/* Günlük Cümleler Stilleri */
.daily-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.daily-controls select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.daily-sentence-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
    text-align: center;
}

.sentence-content {
    margin-bottom: 1.5rem;
}

.sentence-english {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sentence-turkish {
    font-size: 1.4rem;
    color: #7f8c8d;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sentence-info {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f8f9fa;
}

.sentence-category {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.sentence-number {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.sentence-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.favorites-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.favorites-list {
    margin-top: 1rem;
}

.favorite-item {
    padding: 1rem;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorite-item:last-child {
    border-bottom: none;
}

.favorite-content {
    flex: 1;
}

.favorite-english {
    font-weight: bold;
    color: #2c3e50;
}

.favorite-turkish {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.remove-favorite {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-favorite:hover {
    background: #c0392b;
}

.no-favorites {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 2rem;
}

/* Ses ikonları için stiller */
.speak-icon {
    cursor: pointer;
    color: #3498db;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.speak-icon:hover {
    color: #2c3e50;
}

.speak-icon.speaking {
    color: #e74c3c;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}