.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.max-w-8xl{
    max-width: 88rem;
}

.map-container {
    position: relative;
    flex: 2;
}

#map {
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.search-container {
    position: relative;
    margin-bottom: 10px;
    z-index: 1000;
    display: flex;
}

/* .search-input {
    flex: 1;
    padding: 10px 15px;

    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
} */



/* .search-button:hover {
    background-color: #2980b9;
} */

.coordinates-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.5rem;
} */

.saved-coordinates {
    flex-grow: 1;
    margin-bottom: 20px;
}

.coordinate-display {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.coordinate-display p {
    margin: 5px 0;
}

.empty-message {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
/* 
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
    flex: 1;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #2980b9;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
} */

/* .btn-danger:hover:not(:disabled) {
    background-color: #c0392b;
} */

.location-name {
    font-weight: bold;
    color: #2c3e50;
}

.coordinates {
    color: #7f8c8d;
    font-family: monospace;
    font-size: 0.9rem;
}

/* .timestamp {
    color: #95a5a6;
    font-size: 0.8rem;
} */

/* .alert {
    padding: 15px;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
} */

/* .alert-success {
    background-color: #2ecc71;
    color: white;
} */