body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 { margin-bottom: 0.2rem; color: #333; }
.subheading { color: #666; margin-bottom: 2rem; font-style: italic; }

.input-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

textarea {
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

button {
    background: #0070f3;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.entry {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #0070f3;
    background: #fafafa;
}

.entry img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}