<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.circle {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Ã‡ember oluÅŸturmak iÃ§in */
    border-style: dotted;
    border-color: white;
    background-color: transparent; /* Ã‡ember rengi */
    border-width: medium;
    animation: spin 2s linear infinite; /* DÃ¶ndÃ¼rme animasyonu */
}

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

.search-list-item {
    font-weight: 500;
    font-size: 15px;
    color: rgba(4, 3, 69, .8);
    font-family: helvetica neue;
    padding: 6px 0;
}

.search-list-item&gt;a {
    margin-left: 13px;
}

.search-list-item&gt;a:hover {
    color: #000!important;
}

.search-list-item:hover {
    background-color: #e9ecef;
}
</pre></body></html>