.nav-height{
    height: 5vh;
    width: 100vw;
    background-color: whitesmoke!important;
}

.z-alert {
    position: fixed;
    top: 3vh;
    right: 5vw;
    width: 90vw;
    z-index: 9999;
}

.content-section {
    height: 95vh;
    overflow: auto;
    overflow: hidden;
    background-color: rgb(244, 244, 244);
}

.content-section-not-overflow-hidden {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(244, 244, 244);
}

.display-in-row{
    height: 95vh;
    display: flex;
}

/* users index */

.theme-red-btn {
    background-color: #A7586B;
    color: white!important;
}

.theme-green-btn {
    background-color: #6BA758;
    color: white!important;
}

.black-btn:hover {
    background-color: rgb(110, 110, 110)!important;
    color: white!important;
}

.admin-user-column {
    height: 100vh;
    width: 60vw;
}

.admin-user-column-content {
    display: flex;
    flex-direction: column;

    margin-left: 3.5vw;
    margin-right: 3.5vw;
}

.title-section {
    display: flex;
    max-height: 20vh;
    justify-content: space-between;
    align-items: center;
}

.head-in-title-section {
    padding: 5vh;
    flex: 1;
    max-width: 66%;
}

.user-name:hover {
    cursor: pointer;
}

.user-link-to-table2:hover {
    cursor: pointer;
}

.head-in-title-section .btn {
    margin-top: 1vh;
}

.child-user-count {
    width: 5vw;
    background-color: rgb(255, 255, 255);

    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

    margin-top: 5vh;
    margin-bottom: 1.5vw;
    margin-right: -3.5vw;
    padding: 1vw;
}

.child-user-count p {
    color: gray;
}

.view-or-edit{
    margin-top: 3vh;
    margin-bottom: 3vh;
    border-radius: 1vh;
    box-shadow: 2px 5px 6px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding-left: 2vw;
    padding-right: 2vw;

    padding-top: 10vh;
    margin-right: 3.5vw;
    width: 36.5vw;
}

.hint-group {
    display: flex;
    gap: 5px;
}

.hint-group svg {
    width: 1vw;
    height: 1vw;
}

.user-button {
    /* When applied to an element, it prevents the text or content inside from wrapping onto a new line or breaking into multiple lines */
    white-space: nowrap;
}

.vertical-center-button {
    height: 100%;
    vertical-align: middle;
    display: table-cell;
}

.users-table-container {
    background-color: white;
    padding: 1vw;
    border-radius: 0.5vw;
    box-shadow: 2px 5px 6px 6px rgba(0, 0, 0, 0.1);
}

.scrollable-table {
    max-height: 66vh;
    overflow-y: auto;
    display: block;
}

.scrollable-table th {
    text-align: center;
    white-space: nowrap;
}

.user-tbody td {
    text-align: center;
}

.table-email{
    width: 20vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-highlight td{
    background-color: rgba(217, 204, 177, 0.206);
}

/* uses create */

.create-user-content {
    display: flex;
    flex-direction: column;

    align-items: center;

    margin-top: 8vh;
    margin-left: auto;
    margin-right: auto;
    width: 35vw;
    /* height: wrap content */
    height: max-content;

    /* theme-color */
    background-color: rgba(217, 204, 177, 0.133);
    border-radius: 1vw;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.166);
}

.create-user-content h1 {
    margin-top: 10vh;
}

.credential-row {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30vw;
}

.credential-row div{
    margin-top: 2vh;
}

.credential-row label{
    font-size: 1.5vh;
}

.credential-row form {
    text-align: center; /* Center align content within the form */
}

.credential-row .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.credential-row #submit {
    margin-top: 3vh;
    margin-bottom: 2vh;
    padding: 0.35vw;
    font-size: 1vw;
}

.credential-row #expired-date-input {
    margin-top: 2vw;
}


