.content-role {
    padding: 24px 0;
    font-family: 'Montserrat', sans-serif;
}

.role-section {
    background: #FDFCFF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
}
.form-select,
        .form-select-small {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background: #fff;
            font-size: 14px;
        }
        .form-select { width: 100%; max-width: 320px; }
        .form-select-small { width: 220px; }
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0C0B13;
    margin: 0 0 20px 0;
}

.create-form {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-input {
    flex: 1;
    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 {
    outline: none;
    border-color: #0148AC;
}

.form-input::placeholder {
    color: #6c757d;
}

.form-input-small {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
    width: 200px;
}

.form-input-small:focus {
    outline: none;
    border-color: #0148AC;
}

.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;
}

.btn-primary:hover {
    background: #003d8f;
}

.btn-secondary {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333333;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.btn-danger {
    padding: 8px 16px;
    background: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-danger:hover {
    background: #c82333;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.role-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.role-info {
    flex: 1;
}

.role-name {
    font-size: 16px;
    font-weight: 600;
    color: #0C0B13;
}

.role-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .role-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .role-actions {
        justify-content: flex-end;
    }

    .form-input-small {
        width: 100%;
    }
}