.quote-generator {
    font-family: Arial, sans-serif;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.quote-generator:hover {
    opacity: 0.6;
}

.quote-generator .quote-text,
.quote-generator .quote-attribution {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quote-text {
    display: block;
    font-size: 1.2em;
    font-style: italic;
    color: #333;
}

.quote-attribution {
    display: block;
    font-size: 1em;
    color: #666;
    margin-top: 5px;
}

.quote-error {
    color: #d9534f;
    font-style: italic;
}

.quote-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-buttons {
    display: flex;
    gap: 5px;
}

.vote-bleak, .vote-hopeful, .vote-meh {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
}

.vote-bleak { background: #666; }
.vote-hopeful { background: #dc3545; }
.vote-meh { background: #ccc; color: #333; }

.quote-refresh {
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.quote-refresh:hover {
    background: #005a87;
}

.quote-share {
    padding: 5px 10px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.quote-share:hover {
    background: #218838;
}