.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}
.modal-close-btn:hover {
    color: #333;
}

.custom-modal-container {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.modal-content-wrap {
    padding: 20px;
    height: calc(100% - 40px);
}
.custom-modal-header {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F6F6F6;
}