.dark-mode input:-webkit-autofill,
.dark-mode input:-webkit-autofill:focus,
.dark-mode input:-webkit-autofill:hover,
.dark-mode select:-webkit-autofill,
.dark-mode select:-webkit-autofill:focus,
.dark-mode select:-webkit-autofill:hover,
.dark-mode textarea:-webkit-autofill,
.dark-mode textarea:-webkit-autofill:focus,
.dark-mode textarea:-webkit-autofill:hover {
    color: #3f6791 !important;
    -webkit-text-fill-color: #3f6791 !important;
}

.thumbnail {
    display: block;
    width: 32px;
    height: auto;
    border-radius: 50%;
}

.thumbnail-square {
    display: block;
    width: 64px;
    height: auto;
}

.square-btn {
    width: 34px;
    height: 34px;
}

body.dark-mode :disabled {
    background-color: #454d55 !important;
    color: #d1d5db;
}

.rotate {
    animation: rotate 500ms linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
