/**
 * Icon Style - Default SVG Moon/Sun Toggle
 */
.kp-toggle-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.kp-toggle-icon .moon-icon,
.kp-toggle-icon .sun-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kp-toggle-icon .sun-icon {
    display: none;
}

.kp-toggle-icon svg {
    width: 24px;
    height: 24px;
}

