/* Responsive Tabs Bar Styles */
.admin-tabs {
    display: flex;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    flex-wrap: nowrap; /* Prevent wrapping by default */
}

.admin-tab {
    padding: 15px 30px;
    background-color: #f1f1f1;
    text-align: center;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    white-space: nowrap; /* Prevent text wrapping */
}

.admin-tab:hover {
    background-color: #e0e0e0;
}

.admin-tab.active {
    background-color: #4479d9;
    color: white;
}

.admin-tab.reports {
    color: #28a745;
    font-weight: bold;
}

/* Medium screens */
@media (max-width: 768px) {
    .admin-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .admin-tabs {
        flex-direction: column; /* Stack tabs vertically on small screens */
        border-radius: 4px;
        overflow: hidden;
    }
    
    .admin-tab {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        font-size: 16px; /* Increase font size for better touch targets */
    }
    
    .admin-tab:last-child {
        border-bottom: none;
    }
}

