/* reading-tools.css - SADECE STİL KODLARI */
.reading-toolbar {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 4px 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Arial, sans-serif;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-right {
    display: flex;
    align-items: center;
}

.text-size-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
}

.toolbar-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 25px;
}

.toolbar-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.text-smaller, .text-bigger {
    min-width: 30px;
    justify-content: center;
}

.text-size-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.audio-reader {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
}

.audio-reader:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.audio-reader.playing {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.btn-text {
    font-size: 11px;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
}

.time-icon {
    font-size: 10px;
}

.time-text {
    white-space: nowrap;
}

/* Font size değişiklikleri için */
.news-content.font-small {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.news-content.font-medium {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.news-content.font-large {
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.news-content.font-xlarge {
    font-size: 20px !important;
    line-height: 1.9 !important;
}

.news-content.font-small p,
.news-content.font-medium p,
.news-content.font-large p,
.news-content.font-xlarge p {
    font-size: inherit !important;
    line-height: inherit !important;
}