/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-size: 2em;
    text-align: center;
    color: #007BFF;
    font-family: '맑은 고딕', Arial, sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#summary {
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 4px;
    border: 1px solid #ddd;
    min-height: 100px;
    white-space: pre-wrap;
    font-family: '맑은 고딕', Arial, sans-serif;
}

.summary strong {
    font-weight: bold;
    font-family: 'Arial Black', sans-serif; /* 헤드라인 폰트 설정 */
}

#progress-container {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    display: none; /* 초기에는 숨김 */
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #007BFF;
    border-radius: 4px;
}

#progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 20px;
    top: 0;
    left: 0;
    color: #333;
}
