.content-employees {
    padding: 24px 0;
    font-family: 'Montserrat', sans-serif;
}

.employees-section {
    background: #FDFCFF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0C0B13;
    margin: 0 0 20px 0;
}

.create-form {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.form-input,
.form-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #0148AC;
}

.form-input::placeholder {
    color: #6c757d;
}

.btn-primary {
    padding: 12px 24px;
    background: #0148AC;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
    width: fit-content;
}

.btn-primary:hover {
    background: #003d8f;
}

.role-section {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.role-title {
    font-size: 18px;
    font-weight: 700;
    color: #0C0B13;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f9fa;
}

.employees-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.employee-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.employee-card:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.employee-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #0148AC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.employee-avatar svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.employee-info {
    flex: 1;
}

.employee-name {
    font-size: 14px;
    font-weight: 600;
    color: #0C0B13;
    margin: 0 0 4px 0;
}

.employee-details {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.employee-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-state svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .employees-list {
        grid-template-columns: 1fr;
    }

    .employee-card {
        padding: 12px;
    }
}