/* Lakelaw Dark Mode Toggle — button styles only, no color injection */

.lldt-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    background: #f4efe8;
    color: #3B3632;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lldt-toggle:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lldt-toggle svg {
    width: 20px;
    height: 20px;
    transition: opacity 0.25s, transform 0.25s;
}

/* Light mode: show sun, hide moon */
.lldt-icon-sun  { opacity: 1; transform: rotate(0deg); }
.lldt-icon-moon { opacity: 0; transform: rotate(-90deg); position: absolute; }

/* Dark mode active: show moon, hide sun */
html.darkmode-active .lldt-toggle {
    background: #262523;
    color: #E0DBD4;
    border-color: rgba(255, 255, 255, 0.1);
}

html.darkmode-active .lldt-icon-sun  { opacity: 0; transform: rotate(90deg); position: absolute; }
html.darkmode-active .lldt-icon-moon { opacity: 1; transform: rotate(0deg); position: static; }
