.add-to-calendar-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
    display: none;
}

.add-to-calendar-modal-container--visible {
    display: flex;
}

.add-to-calendar-modal {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 576px;
    box-sizing: border-box;
}

.add-to-calendar-modal__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.add-to-calendar-modal__text {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #333333;
}

.add-to-calendar-modal__close-btn {
    height: 24px;
    width: 24px;
    background-color: transparent;
    cursor: pointer;
    text-align: end;
}

.add-to-calendar-modal__close-btn img {
    height: 16px;
    width: 16px;
}

.add-to-calendar-modal__content {
    margin-top: 16px;
}

.add-to-calendar-modal__error {
    font-size: 16px;
    color: #333333;
}