/* manageGroup.css */

/* Table styling */
.superUserTable {
    width: 800px;
    border-collapse: collapse;
    margin: 20px auto;
}

.superUserTable th, .superUserTable td {
    padding: 10px;
    text-align: left;
}

.superUserTable th {
    background-color: rgb(29, 52, 76);
    color: #fff;
}

.superUserTable tr:nth-child(odd) {
    background-color: rgb(44, 66, 94);
    color: #fff;
}

.superUserTable tr:nth-child(even) {
    background-color: rgb(200, 200, 200);
    color: black;
}

.superUserTable th.actionCol {
    width: 100px;
}

/* Button styling */
.superUserTableBut {
    background-color: rgb(229, 132, 17);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0px 5px;
}

.superUserTableBut:disabled {
    /* Your styling for disabled buttons */
    background-color: #666; /* Example background color */
    color: #ccc; /* Example text color */
    cursor: not-allowed; /* Change cursor to not-allowed */
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0px 5px;
}

.superUserTableBut:hover {
    background-color: rgb(249, 162, 37);
}

.superUserTableBut, .superUserTable, .superUserTable tr, .superUserTable th, .superUserTable td, p, h2, label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.userEditModal {
    background-color: #fff;
    position: fixed; /* Set position to fixed */
    top: 50%; /* Position from the top */
    left: 50%; /* Position from the left */
    transform: translate(-50%, -50%); /* Center the modal horizontally and vertically */
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 25;
}

#newUserModalContent {
    height: 420px;
}

#editUserModalContent {
    height: 480px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.superUserBlackText, .superUserErrorMessage {
    color:black;
}

.superUserForm label {
    display: block;
    margin-bottom: 5px;
    color: black
}

.superUserForm input[type="text"], .superUserForm input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#saveUserChanges, #createUserBut, #updatePassword {
    background-color: rgb(44, 66, 94);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#saveUserChanges:hover {
    background-color: rgb(18, 27, 39);
}

