.img-fluid {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
        rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
        rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.food-beverages-text {
    font-size: 15px;
}

.food-beverages-list {
    font-size: 15px;
}

/* New Css */
.custom-tabs {
    border-bottom: 3px solid #0e1a74;
    margin-bottom: 2rem;
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 0.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.custom-tabs .nav-item {
    flex: 1 1 0;
    display: flex;
    position: relative;
}

.custom-tabs .nav-link {
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    color: #495057;
    background: transparent;
    font-weight: 600;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.custom-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #0e1a74;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-tabs .nav-link:hover {
    background: rgba(14, 26, 116, 0.05);
    color: #0e1a74;
}

.custom-tabs .nav-link.active,
.custom-tabs .nav-link:focus {
    background: #fff;
    color: #0e1a74;
}

.custom-tabs .nav-item .nav-link.active {
    background: #fff;
    color: #0e1a74;
    box-shadow: 0 4px 12px rgba(14, 26, 116, 0.12);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.custom-tabs .nav-item .nav-link.active::after {
    width: 100%;
}

.custom-tab-content {
    background: #fff;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 2.5rem 2rem;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(14, 26, 116, 0.1);
}

/* Responsive Table Styling */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
}

.responsive-table table {
    font-size: 14px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    min-width: 600px;
}

.responsive-table th,
.responsive-table td {
    /* border: 1px solid rgba(14, 26, 116, 0.1); */
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.responsive-table th {
    /* background: linear-gradient(to bottom, #0e1a74, #1a237e); */
    color: #495057;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.responsive-table tr:nth-child(even) {
    background: rgba(14, 26, 116, 0.02);
}

.responsive-table tr:hover {
    background: rgba(14, 26, 116, 0.05);
    transition: background 0.3s ease;
}

@media (max-width: 991.98px) {
    .custom-tab-content {
        padding: 1.5rem 1rem;
    }
    .custom-tabs {
        font-size: 14px;
        gap: 0.3rem;
        padding: 0.4rem 1rem;
    }
    .custom-tabs .nav-link {
        padding: 0.4rem 1rem;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .custom-tab-content {
        padding: 1rem 0.5rem;
    }
    .custom-tabs {
        font-size: 13px;
        gap: 0.2rem;
        padding: 0.3rem 0.75rem;
    }
    .custom-tabs .nav-link {
        padding: 0.3rem 0.75rem;
        font-size: 12px;
    }
    .responsive-table {
        margin: 0 -10px;
    }
    .responsive-table table {
        min-width: 350px;
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .responsive-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .responsive-table table {
        min-width: 300px;
        font-size: 11px;
    }
}
