/* Wai Thuk Mode CSS - Simple Version */

/* Toggle Button Styles */
#wtm-toggle-container {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    font-family: 'Sarabun', 'Tahoma', sans-serif;
}

#wtm-toggle-btn {
    background: rgba(51, 51, 51, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#wtm-toggle-btn:hover {
    background: rgba(85, 85, 85, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

#wtm-toggle-btn:active {
    transform: translateY(0);
}

.wtm-text {
    display: inline-block;
    white-space: nowrap;
}

/* Wai Thuk Mode - Grayscale Filter */
.wtm-active {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    #wtm-toggle-container {
        bottom: 15px !important;
        left: 15px !important;
    }
    
    #wtm-toggle-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}
