/* Admin Common Styles - Header Navigation */

.admin-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admin-header-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-nav-actions {
        width: 100%;
        justify-content: center;
    }
}