.ModalContainer {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.Modal {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    background-color: var(--ligther-color);
    border-radius: 10px;
    width: 80%;
    height: 100%;
    overflow: auto;
}

.CollapseHeader {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

#CloseButton {
    padding: 0;
    width: 30px;
    height: 30px;
}

.CollapseContent {
    width: 100%;
    height: max-content;
    display: flex;

    flex-direction: column;
}

.CollapseFooter{
    padding-top: 20px;
    height: max-content;
    display: flex;
    flex-direction: column;
}