input[readonly],input[disabled] {
    background: var(--color-verylightgray) !important;
}

.input:has(input[disabled]) {
    display: none;
}

#addUser {
    margin: 30px 0;
}

#addUser form {
    display: none;
}

/* classrooms */
.classrooms.index p.small {
    margin: 0;
}

.classrooms.view.content {
    position: relative;
}

.classroom-detail {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10pt;
    color: var(--color-lightgray);
    text-align: right;
}

.students span.student {
    display: inline-block;
    padding: 3px 8px;
    margin: 0 4px 0 0;
    background: var(--color-message-info-text);
    color: white;
    border-radius: 10px;
    font-size: 8pt;
}

.actions a {
    white-space: nowrap;
}

/* classroom teachers */
.users-list {
    margin-bottom: 2rem;
}
.users-list a {
    display: inline-block;
    background-color: #1f9d55;
    border-radius: 5px;
    padding: 4px 8px;
    color: white;
    font-size: 10pt;
    margin-right: 10px;
    margin-bottom: 5px;
    position: relative;
}
.users-list .user {
    padding-right: 15px;
    background-color: #2f85ae;
}
.users-list .user::after{
    content: " x";
    font-size: 9pt;
    position: absolute;
    top: -2px;
    right: 3px;
}

/* filter */
.filter {
    margin: 5px 0;
    position: relative;
}

.filter h2 {
    display: inline-block;
    font-size: 12pt;
    font-weight: bold;
    margin: 0;
}