body {
    margin: 0;
    padding: 0;
    background-color: #b6b6b6;
    font-family: Arial, Helvetica, sans-serif;
}

/* Imagen del header */
.header-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Panel gris debajo del header (como en la ASPX) */
.main-panel {
    background-color: #f1f1f1;   /* gris claro del panel de contenido */
}

/* Título principal de la página */
.page-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

/* Párrafos de introducción */
.page-intro {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Lista numerada estilo "bolas" */
.instructions {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    counter-reset: instr;
}

.instructions li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Círculo con el número */
.instructions li::before {
    counter-increment: instr;
    content: counter(instr);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #666;
    text-align: center;
    line-height: 22px;
    font-size: 0.85rem;
    background-color: #ffffff;
}

/* Subtítulo dentro de cada instrucción */
.instructions h5 {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

/* Bloque "Buscar empresa" */
.search-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Etiqueta de la caja de búsqueda */
.search-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

/* Botón Buscar parecido al original (gris) */
.btn-buscar {
    background-color: #e5e5e5;
    border: 1px solid #999;
    padding: 4px 16px;
    font-size: 0.85rem;
}

/* Un poco de margen inferior general */
.mb-block {
    margin-bottom: 1rem;
}

/* Tabla de empresas de la página de selección */
.empresas-table {
    font-size: 0.85rem;
    background-color: #ffffff;
}

.empresas-table thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.empresas-table a {
    text-decoration: underline;
    cursor: pointer;
}

/* hr especial como en la ASPX (clase divid) */
hr.divid {
    border-top: 1px solid #ccc;
    margin: 18px 0;
}

/* Tablas de empresa */
.tabla-simple {
    font-size: 0.85rem;
}

/* Botón gris reutilizado */
.btn-buscar {
    background-color: #e5e5e5;
    border: 1px solid #999;
    padding: 4px 16px;
    font-size: 0.85rem;
}