/* Main styles for Autocorrect Web UI */
body {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 2rem;
}

pre {
    white-space: pre-wrap;
    word-break: keep-all;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: rgba(0, 123, 255, 0.1);
}

textarea {
    font-family: 'Courier New', Courier, monospace;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
} 