/* MOCA Popup Layer Styles - SPEC-USER-PAGE-005 */
.moca-popup-layer {
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
}

.moca-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    cursor: move;
    user-select: none;
}

.moca-popup-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 30px);
}

.moca-popup-close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0 4px;
}

.moca-popup-close:hover {
    color: #333;
}

.moca-popup-body {
    overflow-y: auto;
    padding: 0;
}

.moca-popup-image {
    display: block;
    width: 100%;
    height: auto;
}

.moca-popup-content {
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.moca-popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.moca-popup-today-close {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.moca-popup-today-close input[type="checkbox"] {
    margin: 0;
}

.moca-popup-footer-close {
    background: none;
    border: 1px solid #ccc;
    padding: 3px 10px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    border-radius: 3px;
}

.moca-popup-footer-close:hover {
    background: #eee;
}
