/* LIGHT MODE (DEFAULT) */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
}

/* DARK MODE */
body.ldt-dark {
    --bg-color: #111111;
    --text-color: #f5f5f5;
}

/* APPLY COLORS */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* TOGGLE BUTTON */
#ldt-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: #000;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

body.ldt-dark #ldt-toggle {
    background: #fff;
    color: #000;
}
