.dqh-quote, .dqh-history {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-family: inherit;
}

.dqh-quote h4, .dqh-history h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.dqh-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: 15px;
}

.dqh-quote cite {
    display: block;
    margin-top: 4px;
    text-align: right;
    font-size: 13px;
    color: #666;
}

.dqh-history ul {
    margin: 0;
    padding-left: 20px;
}

.dqh-history li {
    margin-bottom: 4px;
    font-size: 14px;
}

/* İstersen kayar yazı (ticker) efekti için */
/* Tarihte Bugün satırlarını yana doğru kaydırır */
.dqh-history ul.dqh-ticker {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 40px;
    white-space: nowrap;
    overflow: hidden;
    animation: dqhTicker 40s linear infinite;
}

.dqh-history ul.dqh-ticker li {
    margin-bottom: 0;
}

@keyframes dqhTicker {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}