body, html {
    height: 100vh;
    margin: 0;
}

.content-title {
	font-size: 20px;
	font-weight: bold;
}

/* Shared loading overlay: legacy $('#my-spinner').show()/hide() remains supported. */
#my-spinner {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(24, 52, 54, .25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: progress;
    overscroll-behavior: contain;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
}
#my-spinner *, #my-spinner *::before, #my-spinner *::after { box-sizing: border-box; }
#my-spinner.is-page-navigation { display: block !important; }
#my-spinner .app-loading-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    padding: 16px;
}
#my-spinner .app-loading-card {
    width: 300px;
    max-width: 100%;
    padding: 28px 24px 22px;
    border: 1px solid #e3ebec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 64px rgba(22, 56, 58, .16);
    text-align: center;
    color: #213c40;
}
#my-spinner .app-loading-symbol {
    position: relative;
    display: grid;
    place-items: center;
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f0f7f5;
}
#my-spinner .app-loading-ring {
    position: absolute;
    inset: 8px;
    border: 3px solid #d5e9e3;
    border-top-color: #187b70;
    border-right-color: #6eaa9c;
    border-radius: 50%;
    animation: app-loading-spin 1s linear infinite;
}
#my-spinner .app-loading-core { width: 8px; height: 8px; border-radius: 50%; background: #187b70; }
#my-spinner .app-loading-title { margin: 0; font-size: 18px; font-weight: 750; line-height: 1.5; letter-spacing: -.5px; }
#my-spinner .app-loading-description { margin: 7px 0 0; font-size: 13px; line-height: 1.6; color: #627b7d; }
#my-spinner .app-loading-caption { display: block; margin-top: 20px; padding-top: 14px; border-top: 1px solid #edf2f2; font-size: 11px; line-height: 1.6; color: #627b7d; }
@keyframes app-loading-spin { to { transform: rotate(360deg); } }
@media(max-width:480px) { #my-spinner .app-loading-card { width: 280px; padding: 24px 20px 20px; border-radius: 18px; } }
@media(max-height:400px) {
    #my-spinner .app-loading-card { padding: 16px 20px; }
    #my-spinner .app-loading-symbol { width: 44px; height: 44px; margin-bottom: 10px; }
    #my-spinner .app-loading-ring { inset: 5px; }
    #my-spinner .app-loading-caption { display: none; }
    #my-spinner .app-loading-title { font-size: 16px; }
}
@media(prefers-reduced-motion:reduce) { #my-spinner .app-loading-ring { animation: none; } }
@media print { #my-spinner { display: none !important; } }

/* 스크롤바 css */
div::-webkit-scrollbar{
	width: 10px;
	height: 5px;
}
div::-webkit-scrollbar-thumb{
	background: #666;
	border-radius: 3px;
}
div::-webkit-scrollbar-track{
	background: rgba(0,0,0,0.1);
}

/* Hide only the scrollbar on phones/touch devices; keep native scrolling enabled. */
@media screen and (max-width:767.98px), screen and (hover:none) and (pointer:coarse) {
    html, body, * { scrollbar-width: none !important; }
    ::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
}

@keyframes blink-effect { 50% { opacity: 0.5; } }

.js-hover-highlight:hover {
	scale: 1.05;
	cursor: pointer;
	box-shadow: 0px 0px 5px 5px #212529;
	transition-duration: 150ms;
}

.site-header .site-brand-column {
    min-width: 0;
}

.site-header .site-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.site-header .site-brand-logo {
    height: 34px;
    flex-shrink: 0;
}

.site-header .site-brand-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(12px, 3.5vw, 20px);
    font-weight: bold;
}
