.graph-container {
    width: 100%;
    overflow-x: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: flex-start;
}

#chart text {
    fill: white;
    font: 10px Helvetica;
    text-anchor: end;
}

.infoContainer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 4px 2px #c3c3c3;
    /* border: 1.5px solid; */
    border-radius: 6px;
    box-sizing: border-box;
    background: #faebd7a3;
}

.infoHeader {
    text-align: center;
}

.infoDag {
    text-align: center;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.infoDagToolTip {
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    background-color: #4f5a5f;
    min-height: 80px;
    color: white;
    border-radius: 3px;
    margin: 3px;
    filter: drop-shadow(1px 1px 7px #858585);
}

.infoDagSeeMore {
    width: 50%;
    margin: auto;
    background: white;
    border: 1px solid #b7b3b3;
    margin-bottom: 2px;
    border-radius: 3px;
    filter: drop-shadow(1px 1px 4px #858585);
}

.infoDagSeeMore:hover {
    color: red;
}

.infoDagSeeMore:hover+.infoDagToolTip {
    display: block;
}

.infoHeaderTitle,
.infoDagTitle {
    background: #3c8d7f;
    padding: 6px 0;
    color: white;
}

.infoDagContainer,
.infoHeaderContainer {
    padding: 4px 0;
    font-size: 16px;
    flex-grow: 1;
    min-height: 20px;
}

.infoButtonContainer {
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
    height: 30px;
    /* background: linear-gradient(45deg, #59bcab, #51b59e91); */
}

.infoButton,
.infoSurveyButton {
    background: #42a045;
    border: none;
    padding: 3px 5px;
    border-radius: 3px;
    flex-basis: 45%;
    color: white;
    background-position: 25%;
    background-size: 400%;
    transition: background 500ms ease-in-out, color 500ms ease-in-out;
}

.infoButton:hover {
    background-position: 100%;
}

.infoButton>a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.controlButton {
    position: fixed;
}

.overlay_container {
    position: relative;
}

.graph_modal {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid #81818170;
    background: whitesmoke;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    /* min-height: 400px; */
    max-height: 80%;
    display: flex;
    flex-direction: column;
    color: black;
    width: 95%;
    max-width: 600px;
    border-radius: 10px;
    min-height: 320px;
}

.khatian_tree_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6e7072ba;
    width: 100%;
    height: 100%;
}

.modal-info-container {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.modal-info-container-header {
    background: #ecf5ec;
    text-align: center;
    color: rgb(0, 0, 0);
}

.modal-dag-container,
.modal-owner-container {
    flex-grow: 1;
    background: #ffffff;
    padding: 0 10px;
    text-align: left;
    padding-top: 10px;
    word-break: break-word;
    width: 100%;
}

.modal_info_table {
    overflow-y: auto;
    flex-grow: 4;
    display: flex;
}

.modal_info_khatian {
    padding: 6px 0;
    text-align: center;
    background: #349737;
    color: white;
}

.modal_info_close_button {
    display: flex;
    justify-content: end;
    padding: 5px 10px;
}

.modal_info_close_button>button {
    max-width: 110px;
}

.khatian_info_modal_container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    display: none;
}