/**
 * Ailz Dark Mode – Default Toggle Button
 */

#ailz-dark-mode-toggle {
    position: fixed;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

#ailz-dark-mode-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.ailz-dark-mode-icon {
    font-size: 24px;
    line-height: 1;
}

/* Dark mode adjustments for the toggle button itself */
.dark-mode #ailz-dark-mode-toggle {
    background-color: #333;
    border-color: #555;
}

.dark-mode .ailz-dark-mode-icon {
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    #ailz-dark-mode-toggle {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    .ailz-dark-mode-icon {
        font-size: 20px;
    }
}