/* Günlük Cümleler Stilleri */
.daily-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.daily-controls select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: white;
    font-size: 1rem;
    min-width: 200px;
}

.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;
}

/* Buton stilleri */
.btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Ses ikonları */
.speak-icon {
    cursor: pointer;
    color: #3498db;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.speak-icon:hover {
    color: #2c3e50;
    background: #f8f9fa;
}

.speak-icon.speaking {
    color: #e74c3c;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .daily-controls {
        flex-direction: column;
    }
    
    .sentence-english {
        font-size: 1.4rem;
        flex-direction: column;
    }
    
    .sentence-turkish {
        font-size: 1.1rem;
        flex-direction: column;
    }
}