```css
body { 
    font-family: Arial, sans-serif; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px;
    background-color: #f5f5f5;
}

.form-group { 
    margin-bottom: 15px; 
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

label { 
    display: block; 
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input { 
    width: 100%; 
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button { 
    padding: 10px 20px; 
    background: #4CAF50; 
    color: white; 
    border: none; 
    cursor: pointer;
    border-radius: 4px;
    margin: 5px;
}

button:hover { 
    background: #45a049; 
}

#listaRegistros {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.btn-ver { 
    background: #2196F3; 
}

.btn-editar { 
    background: #FFA000; 
}

#modalRegistro {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    width: 90%;
    max-width: 500px;
}

#map-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

#map {
    width: 90%;
    height: 80%;
    margin: 5% auto;
    border-radius: 8px;
}

.map-buttons {
    text-align: center;
    margin-top: 10px;
}

.map-buttons button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.confirm-btn {
    background: #4CAF50;
    color: white;
}

.cancel-btn {
    background: #f44336;
    color: white;
}

.location-button {
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 1001;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-icon {
    width: 12px;
    height: 12px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    position: relative;
}

.location-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #4CAF50;
    border-radius: 50%;
}
```