
.users-user-wrapper {
    display: flex;
    flex-direction: column;
}

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

.users-list-header, .users-list-row {
    display: grid;
    grid-template-columns: 40px 50px 300px 150px 100px 100px 100px;
    padding: 5px 10px;
    align-items: center;
    text-align: left;
    min-width: 800px;
}

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

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

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

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

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

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

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

/* Подравняване на първите колони вляво */
.users-list-row > div:nth-child(-n+3) {
    text-align: left;
}

.users-eye-button {
    width: 40px;
    height: 40px;
    background-color: #007baf;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.users-eye-button i {
    margin: 0;
    padding: 0;
    display: block; /* или inline-flex */
    width: 100%;
    text-align: center;
}

.users-eye-button:hover {
    background-color: #005f8a;
}

.users-collapsible-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.users-collapsible-content.wl2-hidden {
    max-height: 0;
}

.users-collapsible-content.wl2-visible {
    max-height: 1000px; /* или колкото е нужно */
}

.users-count-highlight-box1 {
    text-align: left;
    font-size: 12px;
    color: #333;
}

.users-count-highlight-box2 {
    text-align: left;
    font-size: 12px;
    color: #1a73e8;
    font-weight: 600;
}

.users-count-highlight-box3 {
    text-align: left;
    font-size: 12px;
    color: #1a73e8;
    font-weight: 600;
}

.users-name,
.users-role {
    font-weight: bold;
}

.users-user-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

/* няма публикации*/
.users-status-0 {
    background-color: #ffe5ec;
    color: #990f3d;
    border: 1px solid #f5c2d7;
}

/* има публикации */
.users-status-1 {
    background-color: #f0f8ff;
    color: #003366;
    border: 1px solid #99cfff;
}

.users-list-row2 {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    padding: 5px;
    align-items: center;
    text-align: left;
}

.users-list-row2 > div {
    font-size: 12px;
}
