


.roles-list-container {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    min-width: 800px;
    overflow-x: auto;
}

.roles-list-header, .roles-list-row {
    display: grid;
    grid-template-columns: 40px 60px 150px 60px 1fr;
    gap: 10px;
    padding: 5px;
    align-items: center;
    text-align: left;
}

.roles-list-row > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roles-list-header {
    font-weight: bold;
    background-color: #f0f0f0;
}

.roles-list-header > div,
.roles-list-row > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.roles-list-row.even {
    background-color: #ffffff;
}

.roles-list-row.odd {
    background-color: #e9ecef;
}

.roles-list-row > div {
    font-size: 12px;
}

.roles-list-row > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roles-list-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.roles-list-row.even {
    background-color: #ffffff;
}

.roles-list-row.odd {
    background-color: #e9ecef;
}

.roles-form-container {
    margin-bottom: 80px;
}

.roles-list-row > div {
    font-size: 12px;
}

.roles-list-row > div:nth-child(-n+3) {
    text-align: left;
}

.roles-actions {
    display: flex;
    justify-content: flex-end;
    gap: 3px;
}

.roles-truncate {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.roles-row {
    margin-bottom: 20px;
}

.roles-select {
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}

.roles-label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.roles-box {
    display: flex;
    flex-direction: column;
}

.roles-header p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.roles-row input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}










