body {
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* common to home app */
.modal-title {
    /* color: #9155C7; */
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    flex-grow: 1;
}

.customForm .input_container {
    display: grid;
    gap: 16px;
    padding: 20px;
}
.customForm label {
    color: #1c274c;
    font-weight: bold;
    display: block;
}
.customForm textarea,
.customForm input,
.customForm select {
    width: 100%;
    background-color: #fff;
    padding: 5px 10px;
    color: black;
    border: none !important;
    border: 1px solid #cfcfcf !important;
    margin-bottom: 25px;
    outline: none;
    border-radius: 4px;
}

#app {
    display: flex;
    overflow-y: hidden;
}

#side_nav_bar {
    width: 225px;
    flex-shrink: 0;
    background: #1c274c;
}

#right_bar {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#right_bar > .navbar {
    flex-shrink: 0;
}

#right_bar > main {
    flex-grow: 1;
    background-color: rgba(145, 85, 199, 0.05) !important;
    padding: 16px;
}

.main_content {
    /* border: 1px solid red; */
    height: 100%;
    background-color: #122c4405;
    overflow-y: scroll;
    color: white;
}

#side_nav_bar .main_logo {
    display: block;
    /* margin: 20px auto 20%; */
    margin: 40px auto 50px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
    text-decoration: none;
}

#side_nav_bar .main_logo img {
    width: 100%;
}

#side_nav_bar .sub_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 5px 5px 0;
}

#side_nav_bar .active {
    background-color: white !important;
    color: #1c274c !important;
    font-weight: bold;
}

.active img {
    filter: brightness(0%);
}

.sub_menu a div {
    width: 38px;
    height: 25px;
}

#side_nav_bar .sub_menu a {
    font-size: 16px;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-weight: bold;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 7px;
    color: black;
    background: #ecf0ff;
    padding: 8px 10px;
    font-weight: 600;
    width: 95%;
}

#side_nav_bar .sub_menu a:hover {
    background: #aeb3dd;
    font-weight: 700;
    transition-duration: 0.3s;
}

.sub_nav_bar {
    display: flex;
    justify-content: space-between;
}

#right_bar > nav {
    background-color: #fff !important;
    padding: 15px;
}

.container {
    margin-right: 0 !important;
}

/* logout popup */

.logout-pop {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.838);
    z-index: 10;
    display: none;
}

/* page header */
.pageHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    /* Rectangle 104 */
    box-shadow: 0px 0px 3px rgba(145, 85, 199, 0.25);
    padding: 8px;
}

.pageHeader .pageTitle {
    color: #1c274c;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* custom table container */
.customTableContainer {
    margin-top: 14px;
    color: white;
}

.customTableContainer table {
    width: 100%;
    box-shadow: 0px 0px 3px rgba(145, 85, 199, 0.25);
    border-radius: 8px;
    overflow: hidden;
}
.customTableContainer table th {
    background-color: #1c274c;
    color: #fff;
    padding: 8px 12px;
}
.customTableContainer tbody tr {
    background-color: #fff;
    color: #333333;
}

.block_div_nested_component,
.tr_action {
    cursor: pointer;
}

.customTableContainer tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(152, 152, 152, 0.236) !important;
    font-weight: 400;
}
.customTableContainer tbody td {
    padding: 12px;
}

.customTableContainer .icon_img {
    width: 60px;
}

#editCollectionImagePreview,
#preview {
    width: 100px;
}

.society_info {
    background-color: #e4e2e2 !important;
}
