/* Importar la fuente Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    margin: 20px;
    background-color: #f8f9fa;
}

h1 {
    color: #007BFF;
}

form {
    margin-bottom: 20px;
}

input, button {
    margin-right: 10px;
    padding: 8px;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

table th {
    background-color: #007BFF;
    color: white;
}

table td form {
    margin: 0;
}

input[type="text"], input[type="email"] {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Importar fuente Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

/* Encabezado principal */
h1 {
    text-align: center;
    font-size: 1.8rem;
    color: #08539a;
    margin-bottom: 20px;
}

header img {
    display: block;
    margin: 0 auto;
    width: 150px; /* Logo responsivo */
}

/* Estilo del formulario */
form {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: 600;
    color: #08539a;
    margin-bottom: 5px;
    display: block;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #f07a39;
    box-shadow: 0 0 3px #f07a39;
}

/* Botones */
button {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    background-color: #f07a39;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}

button:hover {
    background-color: #d06930;
}

/* Loader */
#loader {
    display: none;
    text-align: center;
    margin-top: 20px;
}

#loader img {
    width: 50px;
    height: 50px;
}

/* Botón dinámico "Reportar otro problema" */
.add-problem {
    background-color: #08539a;
    margin-top: 10px;
}

.add-problem:hover {
    background-color: #063c72;
}

/* Campos dinámicos */
.problem-container {
    border: 1px dashed #08539a;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

/* Mensajes */
.message {
    text-align: center;
    font-size: 1rem;
    color: #08539a;
    margin-top: 10px;
}
/* Estilo para el botón principal (Enviar Solicitud) */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    background-color: #f07a39;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #d06930;
}

/* Estilo para el botón "Reportar otro problema" */
#addProblemButton {
    background-color: #6c757d;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    padding: 8px;
    margin-bottom: 20px;
    display: block; /* Mantenerlo en línea separada */
    width: auto; /* No ocupar todo el ancho */
    text-transform: capitalize;
}

#addProblemButton:hover {
    background-color: #5a6268;
}



/* Estilos para el contenedor de 2 columnas */
.row {
    display: flex;
    gap: 15px; /* Espacio entre columnas */
    margin-bottom: 15px;
}

.column {
    flex: 1; /* Cada columna toma el mismo espacio */
}

.column label {
    display: block;
    font-weight: 600;
    color: #08539a;
    margin-bottom: 5px;
}

.column input, .column select {
    width: 100%;
    padding: 8px;
    font-family: 'Raleway', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.column input:focus, .column select:focus {
    outline: none;
    border-color: #f07a39;
    box-shadow: 0 0 3px #f07a39;
}

        .loader {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .loader img {
            width: 100px;
            height: 100px;
        }

        .problem-container { margin-bottom: 20px; position: relative; }
        .remove-button {

            right: 0; top: 0;
            background-color: #dc3545; color: white;
            border: none; padding: 5px 10px; border-radius: 5px;
            cursor: pointer; font-size: 14px;
        }
        .remove-button:hover { background-color: #c82333; }

/* Contenedor para el checkbox y texto en la misma línea */
.checkbox-container {
    display: flex;
    align-items: center; /* Centra verticalmente */
    gap: 8px; /* Espacio entre el checkbox y el texto */
    margin-bottom: 15px; /* Espacio inferior */
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-container label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #08539a; /* Color azul A-Móvil */
    cursor: pointer;
}


/* Responsive Design */
@media (min-width: 768px) {
    form {
        max-width: 600px;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.5rem;
    }

    button {
        font-size: 1rem;
    }

    label {
        font-size: 0.9rem;
    }
}
.tienda-checkbox label{
display:flex;
align-items:center;
margin:10px 0;
gap:10px;
}
.tienda-checkbox label input{
width:auto;
margin:0;
}