.mwl-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 0 0 6px 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mwl-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
}

.mwl-suggestions li:last-child {
    border-bottom: none;
}

.mwl-suggestions li:hover,
.mwl-suggestions li.selected {
    background-color: #f8f9fa;
}

.mwl-suggestions .mwl-suggestion-text {
    color: #333;
}

.mwl-input-wrapper {
    position: relative;
}

.mwl-loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: mwl-spin 1s linear infinite;
}

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

.mwl-map-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
}

.mwl-distance-result {
    margin: 10px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    color: #495057;
}

.mwl-distance-result strong {
    font-weight: 600;
    color: #333;
}

.mwl-route-line {
    stroke: #3388ff;
    stroke-width: 4;
    stroke-opacity: 0.6;
}

.mwl-map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}

.mwl-route-info {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mwl-route-header {
    margin-bottom: 20px;
}

.mwl-route-header h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.mwl-route-stats {
    display: flex;
    gap: 20px;
}

.mwl-distance, .mwl-duration {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
}

.mwl-route-steps {
    max-height: 400px;
    overflow-y: auto;
}

.mwl-route-steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mwl-step {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.mwl-step:last-child {
    border-bottom: none;
}

.mwl-step-number {
    width: 24px;
    height: 24px;
    background: #3388ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mwl-step-content {
    flex: 1;
}

.mwl-step-instruction {
    color: #333;
    margin-bottom: 4px;
}

.mwl-step-distance {
    font-size: 12px;
    color: #666;
} 