<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#popup {
    display: flex;
    justify-content: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    overflow: auto;
}

#popup_content {
    display: inline-block;
    border: 1px solid black;
    background-color: white;
    padding: 15px;
}

.popup_title {
    margin-top: 7px;
    font-weight: bold;
}

.popup_img &gt; img {
    margin: 10px;
}

.popup_content {
    margin: 15px;
    padding: 10px;
    border: 0.3px solid black;
}

.popup_day {
    margin-right: 10px;
    font-size: 17px;
}

.popup_day &gt; input {
    width: 15px;
    height: 15px;
}

.popup_close {
    width: 80px;
    height: 37px;
    color: white;
    border: 0;
    border-radius: 4px;
    background: rgba(43, 125, 254, 1);
}

.popup_close_div {
    padding-left: 3px;
    text-align: left;
}

.popup_close_img {
    width: 25px;
    height: 25px;
    margin-top: 5px;
    padding: 2px;
    border: 0.3px solid black;
}
</pre></body></html>