@font-face {
    font-family: 'Unitblock';
    src: url('/static/Unitblock-JpJma.ttf') format('truetype');
}

body {
    font-family: 'Unitblock', serif;
    background-color: #f7eded;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 60%;
    background: #f5f0e6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

h1 {
    text-align: left;
    color: #000;
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-size: 1em;
    margin-bottom: 15px;
}

.status-box {
    border: 1px solid #ccc;
    padding: 15px;
    background: #f9f9f9;
    margin-bottom: 20px;
}

#note-form {
    display: flex;
    gap: 10px;
}

#analyst-notes {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

button {
    padding: 10px 20px;
    border: none;
    background: #333;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, background-color 0.3s ease;
}

button:hover {
    background: #555;
    transform: translateY(-3px);
}

button:active {
    transform: translateY(1px);
}

.analyzing-indicator {
    color: #888;
    font-style: italic;
    opacity: 0.7;
    margin-top: 10px;
}


