/* Tabs Bar Styles */
.admin-tabs {
    display: flex;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.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;
}

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

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

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

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

