body {
    font-family: sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1e1e1e;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

h1 {
    margin: 0;
}

main {
    padding: 1rem;
}

#stock-input-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

#stock-symbol {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

#analyze-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-left: 0.5rem;
}

#analysis-result, #financial-statements {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    margin-top: 0;
}

p {
    line-height: 1.6;
}
