body {
    font-family: sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 720px;
    width: calc(100% - 2rem);
}

h1 {
    color: #333;
}

#quote-display {
    font-size: 2rem;
    font-weight: bold;
    margin: 2rem 0;
    padding: 1rem;
    border: 2px dashed #ccc;
    border-radius: 5px;
    min-height: 50px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.philosopher {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
    color: #555;
}

.quote-form {
    margin-top: 2rem;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.quote-form h2 {
    margin: 0 0 1rem;
    color: #333;
    font-size: 1.2rem;
}

.quote-form label {
    display: block;
    font-weight: bold;
    margin: 0.75rem 0 0.5rem;
    color: #444;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.quote-form button {
    margin-top: 1rem;
    width: 100%;
}

.form-status {
    margin: 0.75rem 0 0;
    color: #1a7f37;
    font-weight: bold;
    min-height: 1.25rem;
}
