
#modalImportarGeoJSON.modal {
    max-width: 650px;
    min-height: 670px;
    height: auto;
    max-height: 95%;
    position: relative;
}

/* Evitar la barra de desplazamiento en el modal */
#modalImportarGeoJSON .modal-content {
    overflow-y: visible;
    min-height: 550px;
}

#modalImportarGeoJSON .drop-area {
    border: 2px dashed #9e9e9e;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #fafafa;
}
#modalImportarGeoJSON .drop-area.highlight {
    background-color: #e3f2fd;
    border-color: #2196f3;
}
#modalImportarGeoJSON .drop-area p {
    margin: 0;
    color: #757575;
    font-size: 1.1em;
}
#modalImportarGeoJSON .file-icon {
    font-size: 3em;
    color: #9e9e9e;
    margin-bottom: 10px;
}
#modalImportarGeoJSON .file-input {
    display: none;
}
#modalImportarGeoJSON .file-list {
    margin-top: 15px;
    color: #424242;
    font-size: 0.95em;
}
#modalImportarGeoJSON .file-list p {
    margin: 5px 0 20px 0;
    font-weight: 500;
    text-align: center;
}
#modalImportarGeoJSON .btn-upload {
    width: 100%;
    margin-top: 20px;
}
#modalImportarGeoJSON .btn-importar {
    background-color: rgb(50, 104, 156) !important;
    width: 100%;
    margin-top: 20px;
}
#modalImportarGeoJSON .select-wrapper input.select-dropdown {
    color: #424242;
}
#modalImportarGeoJSON .color-carousel {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
    align-items: center;
}
#modalImportarGeoJSON .color-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #bdbdbd;
    cursor: pointer;
    transition: border 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#modalImportarGeoJSON .color-option.selected {
    border: 3px solid #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
#modalImportarGeoJSON .color-option.no-color {
    background: repeating-linear-gradient(45deg, #fff, #fff 6px, #e53935 6px, #e53935 12px) !important;
}
#modalImportarGeoJSON .color-option.no-color i.material-icons {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    text-align: center;
    pointer-events: none;
}

#modalImportarGeoJSON .color-option.disabled {
    pointer-events: none; /* Desactiva clics */
    filter: grayscale(100%); /* Convierte a escala de grises */
    opacity: 0.5; /* Opcional: hace que se vean más apagados */
    cursor: not-allowed; /* Cambia el cursor para indicar que no es clicable */
}

.addlocation {
    position: absolute;
    right: 24px;
    font-size: 24px !important;
    z-index: 2;
    display: none;
}
