body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    background-image: url('/static/img/bluepear_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Reducido de 600px */
    overflow: visible;
    margin: 10px auto;
}

#resultsTable {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    table-layout: fixed;
}

#resultsTable th, #resultsTable td {
    padding: 6px; /* Reducido de 8px */
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size:15px; /* Reducido para una apariencia más compacta */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#resultsTable tbody {
    display: block;
    overflow-y: auto;
    max-height: 160px; /* Reducido de 180px */
}

#resultsTable thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}

input[type="text"], .form-control, button {
    padding: 8px 12px; /* Ajustado para menor tamaño */
    font-size: 14px; /* Reducir tamaño de fuente en inputs y botones */
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 9px 14px; /* Ligeramente más pequeño que antes */
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
