/* --- Success Result Modal --- */

/* Success Icon */
.result-icon-success {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Pickup Code Box */
.result-code-container {
    background: #f8fafc;
    border: 2px dashed var(--accent-primary);
    /* Changed to dashed for distinct look */
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.result-code-label {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.result-code-value {
    font-size: 3rem;
    /* Slightly smaller to fit modal */
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 4px;
    line-height: 1;
    font-family: monospace;
}

.btn-copy {
    position: absolute;
    right: 12px;
    top: 12px;
    background: white;
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-copy:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.btn-copy:active {
    transform: scale(0.95);
}

/* Meta Info */
.result-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.result-meta i {
    color: var(--accent-primary);
    margin-right: 4px;
}

.result-meta strong {
    color: var(--text-main);
    font-weight: 600;
}