/* theme-toggle_demo2.css - Demo 2: Bold & Graphic */

.theme-toggle-button-d2 {
    background: none;
    border: 2px solid var(--color-accent);
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.theme-toggle-button-d2:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.theme-toggle-button-d2 svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.theme-toggle-button-d2 .sun-icon {
    display: none; /* Hidden by default, shown in dark mode */
    color: #FFFFFF;
}

.theme-toggle-button-d2 .moon-icon {
    display: block; /* Shown by default, hidden in dark mode */
    color: var(--color-text-primary);
}

body[data-theme='dark'] .theme-toggle-button-d2 .sun-icon {
    display: block;
}

body[data-theme='dark'] .theme-toggle-button-d2 .moon-icon {
    display: none;
}

.theme-toggle-button-d2:hover svg {
    transform: rotate(30deg);
}

body[data-theme='dark'] .theme-toggle-button-d2 {
    border-color: var(--color-accent-secondary);
}

body[data-theme='dark'] .theme-toggle-button-d2:hover {
    background-color: var(--color-accent-secondary);
}
