body {
    font-size: 16px;
}

.generic-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.btn {
    font-size: 2rem;
    padding: 1.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.logo-centrado {
    max-width: 200px;
}

.titulo {
    font-size: 3rem;
    font-weight: bold;
}

.formulario-login {
    max-width: 400px;
}

.campo-input {
    font-size: 2rem;
    padding: 1rem;
}

.slider-container {
    display: none;
}


.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    pointer-events: none; /* Permite que los clics pasen a través del overlay */
    z-index: -1000; /* Asegura que el overlay esté sobre el fondo pero debajo del contenido */
}


/* Stepper container */
.formulario-stepper {
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Etiquetas y campos de entrada */
.form-label {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}


/* Estilos Dropzone */
.dropzone {
    border: 2px dashed #506eaa;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
}

.dropzone:hover {
    background-color: #e2e6ea;
    cursor: pointer;
}

/* Mapa */
#map {
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    height: 300px;
    width: 100%;
}

/* Botones */
.btn {
    font-size: 1.5rem;
    padding: 1rem;
}

.btn-primary {
    background-color: #506eaa;
    border-color: #506eaa;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Stepper container */
.formulario-stepper {
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Etiquetas y campos de entrada */
.form-label {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Campo de texto */
textarea.campo-input {
    font-size: 1.5rem;
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

/* Estilos Dropzone */
.dropzone {
    border: 2px dashed #506eaa;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
}

.dropzone:hover {
    background-color: #e2e6ea;
    cursor: pointer;
}

/* Mapa */
#map {
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    height: 300px;
    width: 100%;
}

/* Botones */
.btn {
    font-size: 1.5rem;
    padding: 1rem;
}

.btn-primary {
    background-color: #506eaa;
    border-color: #506eaa;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}





/* Contenedor principal */
.masonry-grid {
    display: block;
    width: 100%;
}

/* Estilo de cada tarjeta */
.reclamo-card {
    width: 100%; /* Tarjeta ocupa el 100% del contenedor */
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Estilo para la tarjeta misma */
.card {
    display: flex;
    flex-direction: row;
    height: 400px; /* Altura fija para todas las tarjetas */
    overflow: hidden;
}

/* Contenedor del mapa */
.card-map-container {
    flex: 1 1 40%; /* Mapa ocupa el 40% de la tarjeta */
    height: 100%;
    overflow: hidden;
}

.reclamo-map {
    width: 100%;
    height: 100%;
    border-right: 1px solid #ddd; /* Línea divisoria */
}

/* Contenido de la tarjeta */
.card-content {
    flex: 1 1 40%; /* Contenido ocupa el 40% de la tarjeta */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Contenedor de la galería de fotos */
.card-gallery-container {
    flex: 1 1 20%; /* Galería ocupa el 20% de la tarjeta */
    overflow-y: auto;
    padding: 10px;
    border-left: 1px solid #ddd; /* Línea divisoria */
}

.reclamo-photos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reclamo-photo {
    width: 100%;
    max-height: 80px; /* Ajusta la altura máxima de las fotos */
    object-fit: cover;
    border-radius: 5px;
}

/* Asegurar que la galería tenga un scroll interno */
.card-gallery-container {
    max-height: 100%;
    overflow-y: auto;
}



/* Media Query para dispositivos móviles */
@media only screen and (max-width: 768px) {
    .titulo {
        font-size: 2rem;
    }

    .campo-input {
        font-size: 1rem;
        padding: 1rem;
    }


    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .btn, .btn-link {
        font-size: 1.5rem;
        padding: 1rem;
    }
    
}

