body {
background: #1761a0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.quote-widget {
background: #fff;
padding: 40px 30px;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.12);
max-width: 400px;
text-align: center;
}
.quote-title {
font-size: 26px;
font-weight: bold;
margin-bottom: 18px;
}
.quote-text {
font-size: 20px;
margin-bottom: 16px;
color: #333;
}
.quote-author {
font-size: 16px;
color: #1761a0;
margin-bottom: 20px;
}
.quote-actions {
display: flex;
justify-content: center;
gap: 12px;
}
.quote-actions button {
padding: 10px 16px;
border-radius: 50%;
border: none;
background: #e3eaf2;
color: #1761a0;
font-size: 18px;
cursor: pointer;
transition: background 0.2s;
}
#newQuoteBtn {
border-radius: 8px;
padding: 10px 24px;
background: #1761a0;
color: #fff;
font-size: 16px;
}
