
/* Header */
.header {
    background: linear-gradient(135deg, #6B8E8E 0%, #378282 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    transition: background-color 0.3s;
    background-image: url('/img/logo.svg');
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.logo:hover {
    background-image: url('/img/logo-hover.svg');
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px 8px 34px;
    border-radius: 4px;
    transition: background-color 0.3s;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 10px top 8px;
}

.nav a:hover {
    background-color: rgba(255,255,255,0.2);
}
    
.nav-right {
    justify-content: right;
    text-align:right;
    line-height: 1.6;
}

.nav-right a {
    color: white;
    text-decoration: none;
    padding: 4px 24px 4px 6px;
    border-radius: 2px;
    transition: background-color 0.3s;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right 0px top 3px;
}

.nav-right a:hover {
    background-color: rgba(255,255,255,0.2);
}

.nav-right span {
    color: white;
    padding: 1px 8px;
}


.user-info {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .search-row .form-group {
        width: 100%;
    }
    
    .table-container {
        font-size: 14px;
    }
    
    .actions {
        flex-wrap: wrap;
    }
    
    .edit-actions {
        flex-direction: column;
    }
}


