/* SIMPLE MOBILE FIXES */

/* 1. COMPLETELY HIDE FLOATING THEME BUTTON ON MOBILE */
@media (max-width: 768px) {
    .theme-toggle-container {
        display: none !important;
    }
}

/* 2. BETTER MOBILE DARK MODE BUTTON */
.mobile-theme-toggle-item {
    margin: 20px 0;
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-theme-toggle-btn {
    display: block;
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-theme-toggle-btn .theme-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* 3. SIMPLE TTS FIX FOR SAMSUNG */
.tts-button {
    background: #667eea !important;
    border: none !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    cursor: pointer !important;
}