.organizationscrud {
    padding-right: 20px;
}

.organizationscrud .errorMessageContainer {
    padding: 0 0 20px 0;
}

.organizationscrud .header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.organizationscrud .header .title {
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.24px;
    color: #0d4962;
}

/* .organizationscrud .tableRow.header {
    display: table-row;
} */

.organizationscrud .tblContainer table .header {
    position: sticky;
    inset-block-start: 0; /* "top" */
}

.organizationscrud .tblContainer table {
    overflow-y: auto;
}

.organizationscrud .list {
    overflow-y: auto;
}

.organizationscrud table .nameAndIcon {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.organizationscrud table .nameAndIcon .orgName {
    color: #0d4962;
    text-align: left;
}

.organizationscrud .tblContainer table::-webkit-scrollbar,
.organizationscrud .list::-webkit-scrollbar {
    display: none;
}

.organizationscrud .tblContainer table,
.organizationscrud .list {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.organizationscrud .organizationsMessageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 375px);
    background-color: #cae4ef;
    border-radius: 8px;
}

.organizationscrud .organizationsMessageContainer.hide {
    display: none;
}

.organizationscrud .organizationsMessage {
    color: #0d4962;
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.3px;
    text-align: center;
}

.organizationscrud .organizationsSubMessage {
    color: #0d4962;
    font-family: "Metropolis Regular";
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.18px;
    text-align: center;
    width: 550px;
}


/* DARK MODE */
.dark .organizationscrud .header .title,
.dark .organizationscrud table .nameAndIcon .orgName,
.dark .organizationscrud .organizationsMessage,
.dark .organizationscrud .organizationsSubMessage  {
    color: rgba(255, 255, 255, 0.87);
}

.dark .organizationscrud .organizationsMessageContainer {
    background-color: #031821;
}

/* Mobile */
@media (max-width: 767px) {
    .organizationscrud {
        padding: 0 16px;
    }
    .organizationscrud .header .title {
        font-size: 18px;
        letter-spacing: 0.18px;
    }
}