body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f8f9fa;
    color: #333;
	padding-bottom: 96px;  /* footer height + padding */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.card {
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: #e5e7eb;
    color: #111827;
    vertical-align: middle;
}

.status-badge.live {
    background: #dcfce7;
    color: #166534;
}

.status-badge.scheduled {
    background: #fef3c7;
    color: #b45309;
}

.status-badge.beta {
    background: #e0f2fe;
    color: #075985;
}

.status-badge.test {
    background: #f3e8ff;
    color: #6b21a8;
}

.status-badge.disabled {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px dashed #d1d5db;
}

.download-link, .disabled {
    margin-right: 10px;
}
.windows-download {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    margin-right: 10px;
}
.windows-download .download-link {
    margin-right: 0;
}
.windows-options {
    display: none;
    margin-top: 8px;
    width: 100%;
}
.windows-options.is-open {
    display: flex;
}
.windows-option {
    flex: 1 1 50%;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}
.windows-option:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.windows-option:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

footer {
    text-align: center;
    padding: 14px 0;
    background-color: #808080;
    color: #f8f9fa;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px; /* you can adjust the width and height as needed */
    height: 360px;
	overflow: auto;
}
