/* Premium Tourist Inflows styling */

.inflows-page-section {
    background-color: #f8fafc;
}

/* Custom modern tabs */
.inflow-tabs-wrap {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 30px;
    padding-bottom: 2px;
}

.inflow-tab-btn {
    background: none;
    border: none;
    outline: none !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.inflow-tab-btn:hover {
    color: #1964a2;
}

.inflow-tab-btn.active-tab {
    color: #1964a2;
}

.inflow-tab-btn.active-tab::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1964a2;
    border-radius: 2px;
}

/* Tab Panels */
.inflow-tab-panel {
    display: none;
}

.inflow-tab-panel.active-panel {
    display: block;
}

/* Filter panel card */
.filter-card {
    border: 1px solid rgba(13, 31, 45, 0.05) !important;
    border-radius: 12px !important;
}

/* Form controls styling */
.custom-select-box, .custom-date-picker {
    border-color: #e2e8f0;
    height: 42px;
    font-size: 13px;
    border-radius: 8px !important;
    outline: none;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
}

.custom-select-box:focus, .custom-date-picker:focus {
    border-color: #1964a2;
}

/* Highcharts wrapper */
.highcharts-container-card {
    border: 1px solid rgba(13, 31, 45, 0.05) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.highcharts-figure {
    margin: 0;
}

/* Custom Inflows Data Table */
.custom-inflows-table {
    border-collapse: collapse;
}

.custom-inflows-table thead th {
    background-color: #1964a2;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 12px;
}

.custom-inflows-table tbody td {
    padding: 14px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #475569;
}

.custom-inflows-table tbody tr:hover {
    background-color: rgba(25, 100, 162, 0.02);
}

.badge-tourist-count {
    background-color: #f1f5f9;
    color: #1964a2;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Bottom buttons style */
.bottom-action-buttons {
    width: 100%;
}

.bottom-action-buttons a {
    margin-bottom: 12px;
    width: 100%;
}

@media (min-width: 576px) {
    .bottom-action-buttons {
        flex-direction: row !important;
    }
    .bottom-action-buttons a {
        margin-bottom: 0;
        width: auto;
    }
}
