@charset "utf-8";
/**
 * [File] /assets/css/universal_modal.css
 * [Role] 11단계 눈금 대응 및 푸터 높이 최적화
 */

#um-overlay {
    position: fixed; display: none; z-index: 1000;
    top: calc(var(--header-h) + 10px) !important;
    left: 50% !important;
    margin-left: calc(-720px + var(--lnb-w) + 10px) !important;
    width: calc(1440px - var(--lnb-w) - 20px) !important;
    bottom: 10px !important;
    padding: 10px !important;
    background: #4a4f54 !important;
    border-radius: 12px;
}

.um-container {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    background: #0f172a; border-radius: 6px; overflow: hidden;
}

.um-upper { flex: 1; display: flex; overflow: hidden; min-height: 0; }
.um-video-area { flex: 2; background: #000; transition: flex 0.4s; }
.um-info-area { flex: 1; background: #1e293b; display: flex; flex-direction: column; min-width: 420px; border-left: 1px solid #334155; }

/* 골드포인트 박스: 너비를 500px로 확장 */
.gp-box { 
    flex: 0 0 300px; background: #111827; border: 0px solid #334155; 
    border-radius: 10px; padding: 5px 15px; 
}
.gp-top-row { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.gp-label { font-size: 13px; color: #94a3b8; font-weight: bold; }
#gp-score-val { font-weight: 900; transition: all 0.1s; }

/* 수은주(슬라이더) */
.gp-slider { width: 100%; cursor: pointer; margin-top: 2px; }

/* 눈금 스타일: 폰트 키우고 균등 배분 */
.gp-ticks { 
    display: flex; justify-content: space-between; 
    margin-top: 0px; padding: 0 5px;
}
.gp-ticks span { 
    font-size: 15px; /* 형님 눈에 잘 보이게 확대 */
    font-weight: bold; color: #64748b; min-width: 25px; text-align: center;
}
/* 주요 지점 강조 */
.gp-ticks span:first-child { color: #3b82f6; }
.gp-ticks span:nth-child(6) { color: #94a3b8; }
.gp-ticks span:last-child { color: #ef4444; }

/* 푸터: 높이를 95px로 줄여 영역 침범 방지 */
.um-footer { 
    height: 95px; background: #0f172a; border-top: 1px solid #334155; 
    display: flex; align-items: center; padding: 0 15px; gap: 15px; 
}
.gp-label {
	font-size: 16px;
    display: inline-block; /* 골드포인트 마진이 먹히도록 속성 변경 */
    transform: translateY(12px); /* 12px만큼 아래로 이동 (숫자를 키우면 더 내려가요) */
}
.control-group { flex: 1; display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.pick-memo-zone { 
    display: flex; align-items: center; gap: 10px; background: #1e293b; 
    padding: 5px 12px; border-radius: 8px; border: 1px solid #334155; flex: 1; 
}

/* 여백을 위해 추가한 부분 */
.um-footer-spacer {
	display: block;        /* 블록 요소로 명시 */
    width: 440px;          /* 가로 폭 250px 고정 */
    min-width: 440px;      /* 최소 폭도 250px로 고정 (찌그러짐 방지) */
    flex: 0 0 440px;       /* 늘어나지도 줄어들지도 마라 */
    height: 1px;           /* 높이는 상관없음 */
    pointer-events: none; /* 마우스 클릭도 통과하게 만듦 */
}
.btn-scale-toggle { background-color: #4b5563 !important; background: #03C75A; color: #fff; border: none; height: 42px; border-radius: 6px; padding: 0 10px; font-weight: bold; cursor: pointer; }
.um-pick-label { color: #ef4444; font-size: 13px; font-weight: bold; display: flex; align-items: center; gap: 6px; cursor: pointer; white-space: nowrap; }
.memo-input { flex: 1; background-color: #4b5563 !important; background: transparent; border: none; color: #fff; height: 32px; font-size: 14px; outline: none; }
.btn-save { background: #03C75A; color: #fff; border: none; height: 42px; border-radius: 6px; padding: 0 10px; font-weight: bold; cursor: pointer; }
