/* ========================================
 * 보안안내 모달 팝업 스타일 (미니멀 디자인)
 * ======================================== */

/* 모달 배경 (오버레이) */
#securityWarningModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in-out;
}

#securityWarningModal.hidden {
    display: none;
}

/* 모달 컨테이너 - 전용 클래스명 사용 */
#securityModalContainer {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 406px;
    width: auto;
    padding: 0;
    animation: slideUp 0.3s ease-out;
}

/* 모달 헤더 */
.security-modal-header {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.security-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* 모달 본문 */
.security-modal-body {
    padding: 8px 12px;
}

.security-modal-body p {
    margin: 0;
    line-height: 1.4;
    color: #4b5563;
    font-size: 12px;
}

.security-modal-body strong {
    color: #dc2626;
    font-weight: 600;
}

.security-modal-body .font-semibold {
    color: #1f2937;
}

/* 모달 푸터 */
.security-modal-footer {
    padding: 6px 12px 8px 12px;
    text-align: right;
}

.security-modal-footer button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.security-modal-footer button:hover {
    background-color: #2563eb;
}

.security-modal-footer button:active {
    background-color: #1d4ed8;
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
