/* Booking Overview Styles - Stap 3 */
.mrc-booking-overview {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mrc-overview-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0073aa;
}

.mrc-overview-title {
    color: #0073aa;
    margin-bottom: 0.5rem;
}

.mrc-booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mrc-detail-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.mrc-detail-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.mrc-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.mrc-detail-label {
    font-weight: 500;
    color: #666;
}

.mrc-detail-value {
    color: #333;
    font-weight: 500;
}

.mrc-cost-breakdown {
    background: #f0f6ff;
    border: 1px solid #c3dafe;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mrc-cost-breakdown h3 {
    margin-top: 0;
    color: #0073aa;
    font-size: 1.2rem;
}

.mrc-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.mrc-cost-item:last-child {
    border-bottom: none;
}

.mrc-cost-item.subtotal {
    font-weight: 600;
    border-top: 2px solid #c3dafe;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.mrc-cost-item.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0073aa;
    border-top: 3px solid #0073aa;
    margin-top: 1rem;
    padding-top: 1rem;
}

.mrc-cost-description {
    color: #666;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.mrc-addon-item {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.mrc-addon-name {
    font-weight: 600;
    color: #333;
}

.mrc-addon-details {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Cancellation Policy Section */
.mrc-cancellation-policy-section {
    background: #f0f8ff;
    border: 1px solid #b0d4f1;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mrc-cancellation-policy-section h3 {
    margin-top: 0;
    color: #1e6091;
    margin-bottom: 1rem;
}

.mrc-policy-info {
    margin-bottom: 1.5rem;
}

.mrc-policy-info h4 {
    margin: 0 0 0.5rem 0;
    color: #2c5aa0;
    font-size: 1.1rem;
}

.mrc-policy-info p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.mrc-policy-example {
    background: #ffffff;
    border: 1px solid #d1ecf1;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mrc-policy-example h5 {
    margin: 0 0 0.5rem 0;
    color: #155724;
    font-size: 0.95rem;
}

.mrc-policy-example p {
    margin: 0;
    font-weight: 500;
    color: #155724;
}

.mrc-policy-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1rem;
}

.mrc-policy-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
}

.mrc-terms-section {
    background: #fff8dc;
    border: 1px solid #f4d03f;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mrc-terms-section h3 {
    margin-top: 0;
    color: #b7950b;
}

.mrc-terms-content {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e1e5e9;
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

.mrc-terms-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mrc-terms-checkbox {
    margin-top: 0.25rem;
}

.mrc-terms-label {
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.mrc-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.mrc-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.mrc-btn-primary {
    background-color: #0073aa;
    color: white;
}

.mrc-btn-primary:hover {
    background-color: #005a87;
}

.mrc-btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.mrc-btn-secondary {
    background-color: #666;
    color: white;
}

.mrc-btn-secondary:hover {
    background-color: #555;
}

.mrc-error {
    background: #fff2f2;
    color: #d63384;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #f5c2c7;
    margin-bottom: 1rem;
}

.mrc-success {
    background: #d1e7dd;
    color: #0a3622;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #a3cfbb;
    margin-bottom: 1rem;
}

.mrc-loading {
    text-align: center;
    padding: 2rem;
}

.mrc-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .mrc-booking-overview {
        margin: 1rem;
        padding: 1rem;
    }

    .mrc-booking-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mrc-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mrc-btn {
        text-align: center;
    }
}