.status-page-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}

.status-summary-card,
.success-details-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.status-icon-box {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.status-title-box {
    flex: 1;
    min-width: 260px;
}

.status-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.status-subtitle {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

.status-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.info-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.info-item-full {
    grid-column: 1 / -1;
}

.info-label {
    font-size: 0.9rem;
    color: #1B79BE;
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: #254085;
    font-weight: 700;
    word-break: break-word;
}

.success-message-box {
    margin-bottom: 1.5rem;
}

.success-message {
    margin: 0;
    color: #254085;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.qr-section {
    text-align: center;
    margin-bottom: 1.75rem;
}

.qr-image-box {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: #ffffff;
    border: 3px solid #245b84;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-sizing: border-box;
}

.qr-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
}

.qr-status-badge {
    display: inline-block;
    border: 2px dashed #2f9e44;
    color: #2f9e44;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.reservation-info-card {
    background: #f3f4f6;
    border-left: 4px solid #245b84;
    border-radius: 8px;
    padding: 1rem;
}

.reservation-info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0.5rem 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #dbe3ea;
}

.reservation-info-row:last-child {
    border-bottom: none;
}

.reservation-label {
    font-weight: 700;
    color: #1B79BE;
}

.reservation-value {
    color: #254085;
    word-break: break-word;
}

.action-section {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-finalizar {
    min-width: 220px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 0.9rem 1.2rem !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .status-summary-card,
    .success-details-card {
        padding: 1rem;
        border-radius: 14px;
    }

    .status-header {
        flex-direction: column;
        text-align: center;
    }

    .status-title-box {
        min-width: auto;
    }

    .status-title {
        font-size: 1.3rem;
    }

    .status-info-grid {
        grid-template-columns: 1fr;
    }

    .info-item-full {
        grid-column: auto;
    }

    .qr-image-box {
        width: 250px;
        height: 250px;
    }

    .qr-image {
        width: 240px;
        height: 240px;
    }

    .reservation-info-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .reservation-label {
        margin-bottom: 0.1rem;
    }

    .btn-finalizar {
        width: 100% !important;
    }
}