.footer_logo {
    max-height: 70px;
    display: block;
}

.no_data_container {
    border-radius: 10px;
    background-color: #EEE;
    position: relative;
    flex-direction: column;
    row-gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    color: #979797;
    padding: 20px;
}

.no_data_container.white {
    background-color: #FFF;
}

.no_data_container i {
    line-height: 0;
    font-size: 50px;
}

.no_data_container p {
    margin: 0;
    font-size: 15px;
}


.selected_tour_detail {
    border-radius: 10px;
    position: relative;
    background-color: #f1f1f1;
    margin-bottom: 30px;
}

.selected_tour_detail h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.selected_tour_detail h5 span {
    font-weight: 500;
}

.selected_tour_detail .tour_spec {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    row-gap: 15px;
}

.selected_tour_detail .tour_spec h6 {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 700;
}

.selected_tour_detail .tour_spec h6 i {
    color: var(--accent-color);
    line-height: 0;
}

.selected_tour_detail .tour_spec h6 span {
    font-weight: 500;
}

/* SweetAlert Popup */
.swal-popup {
    border-radius: 16px;
    padding: 2rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Title */
.swal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    /* slate-800 */
}

/* Text */
.swal-text {
    font-size: 1rem;
    color: #4b5563;
    /* gray-600 */
    margin-top: 0.5rem;
}

/* Icons */
.swal-icon {
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Confirm Button */
.swal-btn-confirm {
    background-color: var(--accent-color);
    /* primary blue */
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.swal-btn-confirm:hover {
    background-color: var(--accent-color-dark);
}

/* Cancel Button (optional) */
.swal-btn-cancel {
    background-color: #e5e7eb;
    color: #374151;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
}

/* Success icon color fix */
.swal2-success-ring {
    border-color: #22c55e !important;
}

.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: #22c55e !important;
}

/* Error icon color fix */
.swal2-x-mark-line-left,
.swal2-x-mark-line-right {
    background-color: #ef4444 !important;
}

.swal-popup {
    animation: fadeInUp 0.25s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}