/* Theme toggle button styling */
.theme-toggle-btn {
    border: none;
    background: transparent;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.theme-toggle-btn:hover {
    background-color: rgba(var(--bs-body-color-rgb), 0.1);
}

.theme-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.theme-icon {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

/* Light theme - show moon icon */
[data-bs-theme="light"] .theme-icon {
    color: #6f42c1;
}

/* Dark theme - show sun icon */
[data-bs-theme="dark"] .theme-icon {
    color: #ffc107;
}

/* Icon rotation animation */
.theme-icon.rotating {
    transform: rotate(180deg);
}