.np-dropdown {
    position: relative;
}

.np-dropdown input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.np-dropdown .suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.np-dropdown .suggestions.active {
    display: block;
}

.np-dropdown .suggestions div {
    padding: 8px;
    cursor: pointer;
}

.np-dropdown .suggestions div:hover {
    background: #f5f5f5;
}

.np-dropdown input[readonly] {
    background-color: #f9f9f9;
    cursor: pointer;
}

.delivery__input input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    transition: all 0.3s ease;
}

.delivery__input input.valid {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

.delivery__input input.invalid {
    border-color: #F44336;
    background-color: rgba(244, 67, 54, 0.05);
} 