.companies-list-container {
    position: relative;
    margin-top: 5px;
}

.companies-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.companies-header {
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
 
    position: sticky;
    top: 0;
}

.companies-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.company-item:hover {
    background: #f0f7ff;
}

.company-name {
    margin-bottom: 5px;
    font-size: 14px;
}

.company-name strong {
    color: #333;
}

.company-details {
    margin-bottom: 5px;
    font-size: 12px;
    color: #666;
}

.company-details span {
    margin-right: 15px;
}

.company-address {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Анимация при выборе */
.company-item {
    transition: all 0.2s ease;
}

.company-item:active {
    transform: scale(0.98);
}