#entryModalOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.entry-modal-content {
    background: #fff;
    width: 88%;
    max-width: 340px;
    border-radius: 18px;
    text-align: center;
    padding: 0 0 25px 0;
    position: relative;
    border: 3px solid #a855f7;
    box-sizing: border-box;
    overflow: hidden;
}
.entry-modal-header {
    background: #a855f7;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    font-size: 1.1em;
}
.entry-modal-body {
    padding: 20px;
}
.entry-modal-chara {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin-bottom: 10px;
}
.btn-yes {
    background: #a855f7 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    width: 48%;
    box-shadow: 0 4px 0 #7e22ce;
}
.btn-no {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 30px !important;
    width: 48%;
}