﻿html, body {
    height: 100%;
    margin: 0;
   
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1d4ed8;
    margin-bottom: 22px;
    justify-content: center;
}

.logo-icon {
    font-size: 40px;
}

.filtros-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 100%;*/
}

.filtros {
    width: 100%;
    /*max-width: 768px;*/
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: center;
    width: 100%;
}

    .inputs input, .inputs .aspNetTextBox {
        flex: 1 1 200px;
        min-width: 200px;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.filtrar-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .filtrar-btn button, .filtrar-btn input[type=submit] {
        background-color: #1d4ed8;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.resultados-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.resultados {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-style: italic;
    color: #6b7280;
    text-align: center;
    width: 100%;
    max-width: 768px;
    height: auto;
    background: white;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.resultado {
    flex: 1;
    /*background-color: #f3f4f6;*/
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}

.resultado-grid {
    width: 100%;
    border-collapse: collapse;
}

    .resultado-grid th,
    .resultado-grid td {
        border: 1px solid #ddd;
        padding: 2px;
        text-align: center;
    }

    .resultado-grid th {
        background-color: #e5e7eb;
        color: #333;
    }

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Azul claro */
    color: #003366;
}
/*.containerbody-content */
.BodyContent {
    background-color: white;
    /* width: 400px;*/
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #cce;
}

h2 {
    color: #0059b3;
    text-align: center;
}

.button {
    background-color: #0059b3;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .button:hover {
        background-color: #004080;
    }

.label, .fileupload, .result {
    display: block;
    margin-bottom: 15px;
}

.result {
    margin-top: 10px;
    color: green;
    font-weight: bold;
}
