.eclipse-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.eclipse-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.eclipse-orb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#eclipse-sun {
    background: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    z-index: 1;
}

#eclipse-moon {
    background: #333;
    cursor: grab;
    top: 20%;
    left: 20%;
    z-index: 2;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.5);
    transition: none;
}

#eclipse-moon:active {
    cursor: grabbing;
}

body {
    transition: background-color 0.2s ease, color 0.2s ease;
}
