.theme-toggle {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.3);
}

.light-theme .theme-toggle:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

.icon-container {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    fill: #e2e8f0;
}

.sun-icon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.light-theme .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    fill: #f6ad55;
}

.moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    fill: #e2e8f0;
}

.light-theme .moon-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    fill: #4a5568;
}

@media(max-width: 768px) {

    .theme-toggle,
    .icon-container {
        width: 30px;
        height: 30px;
    }
}