/* Location Suggestions */
.location-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: calc(100% - 2px);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item strong {
    color: #2d3436;
}

.suggestion-item small {
    color: #6c757d;
    font-size: 12px;
}

/* Location Details */
.location-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #ddd;
}

.coordinates-display {
    font-family: monospace;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-top: 10px;
}

/* Map Container */
.map-container {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    border-radius: 10px;
}

.map-placeholder i {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
}

.map-placeholder h3 {
    color: #2d3436;
    margin-bottom: 10px;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.location-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #eee;
}

.location-item label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 600;
}

.location-item span {
    font-weight: 600;
    color: #2d3436;
}