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;
    border: 1px solid #A5B8E780 !important;
    margin-bottom: 25px;
    outline: none;
    border-radius: 4px;
}

#app {
    display: flex;
}


#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;
}


.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;
    padding: 8px 0;
}

.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: #22448A;
    color: #fff;
    padding: 8px 12px;
}
.customTableContainer tbody tr {
    background-color: #fff;
    color: #333333;
}
.customTableContainer tbody tr:not(:last-child) {
    border-bottom: 1px solid #dfdfdf;
    font-weight: 400;
}
.customTableContainer tbody td {
    padding: 12px;
}

.customTableContainer .icon_img {
    width: 60px;
}

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

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



.employee_card:nth-child(1) {
    background-image: url("../images/card_1_bg.png");
}
.employee_card:nth-child(2) {
    background-image: url("../images/card_2_bg.png");
}
.employee_card:nth-child(3) {
    background-image: url("../images/card_3_bg.png");
}
.employee_card:nth-child(4) {
    background-image: url("../images/card_4_bg.png");
}