/* /static/css/inputs.css */
.form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background: rgb(74, 74, 74) !important;
    border: 1px solid rgb(100, 100, 100) !important;
    border-radius: 9999px;
    color: white !important;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #4d90fe;
    box-shadow: 0 0 3px rgba(77, 144, 254, 0.5);
    border-radius: 9999px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.70);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

/* Стили для выпадающего списка подсказок */
.search-suggestions-list {
    position: absolute;
    background: rgb(60, 60, 60);
    border: 1px solid rgb(100, 100, 100);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    margin-top: 155px;
}

.search-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.87);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid rgb(80, 80, 80);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background-color: rgb(80, 80, 80);
}

/* Для позиционирования контейнера */
.search-container-wrapper {
    position: relative;
    width: 100%;
    max-width: 660px;
    min-width: min(100%, 300px);
}

/* Скрытие скроллбара для красоты */
.search-suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions-list::-webkit-scrollbar-track {
    background: rgb(50, 50, 50);
    border-radius: 3px;
}

.search-suggestions-list::-webkit-scrollbar-thumb {
    background: rgb(100, 100, 100);
    border-radius: 3px;
}

.search-suggestions-list::-webkit-scrollbar-thumb:hover {
    background: rgb(120, 120, 120);
}