/* static/style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: #f5f3ef;
    color: #2c2a28;
}

h1 {
    text-align: center;
    color: #8b5a2b;
    border-bottom: 2px solid #d4c5a9;
    padding-bottom: 10px;
}

.question-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

button {
    background: #8b5a2b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #6b421e;
}

.clear-btn {
    background: #9e7e5e;
}

.clear-btn:hover {
    background: #7a6044;
}

.result {
    background: #fff8f0;
    padding: 20px;
    border-radius: 12px;
    border-left: 6px solid #8b5a2b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    white-space: pre-wrap;
    font-family: inherit;
}

.compass-good {
    color: #2d6a4f;
    font-weight: bold;
    font-size: 1.1em;
}

.compass-bad {
    color: #9d0208;
    font-weight: bold;
    font-size: 1.1em;
}

.compass-neutral {
    color: #6c757d;
    font-weight: bold;
    font-size: 1.1em;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #aaa;
}

.line-symbol {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1.1em;
    letter-spacing: 0;
    white-space: pre;
    font-weight: bold;
}
