/* ---------- ESTUDIO ---------- */
#estudioCont  {
    width: 1000px;
}

#estudioCont tr> :first-child {
    width: 800px;
}

#estudioCont tr> :not(:first-child) {
    text-align: center;
}


/* ---------- ESTUDIO CABECERA ---------- */
#inputNombreProyecto {
    width: 415px;
    font-weight: bold;
    
}

/* ---------- ESTUDIO BLOQUES ---------- */
#estudioCont table:nth-of-type(odd) {
    background-color: #EEE;
}

#estudioCont table input {
    display: inline-block;
}

/* elementos de la primera celda de cabecera */
#estudioCont thead tr> :first-child * {
    height: 30px;
    vertical-align: top;
}

/* elementos de las filas del cuerpo */
#estudioCont tbody tr * {
    height: 25px;
    font-size: 1em !important;
}

/* botones de la primera celda */
#estudioCont tr> :first-child button {
    width: 30px;
    height: 30px;
    padding: 0;
}

/* nombre del bloque */
#estudioCont thead>tr>th:first-child>input:first-of-type {
    width: 395px;
}

/* botones eliminar linea custom */
#estudioCont tbody>tr> :first-child button {
    margin-left: 5px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    padding: 0;
    line-height: 15px;
    font-size: 12px !important;
    font-weight: bold;
}

/* boton añadir linea custom */
#estudioCont tbody>tr> :first-child button.addBtn {
    font-weight: normal;
    line-height: 12px;
}

/* checkbox lineas predefinidas */
#estudioCont tr> :first-child input[type="checkbox"] {
    margin-left: 5px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    vertical-align: middle; 
}

/* inputs de la primera celda */
#estudioCont tr> :first-child input {
    width: 400px;
    border: none !important;
}

/* input numbers de la primera celda */
#estudioCont tr> :first-child input[type="number"] {
    width: 60px;
    text-align: right;
    border: none !important;
}

/* selects de la primera celda */
#estudioCont tr> :first-child select {
    width: 225px;
    padding: 0 8px;
    display: inline-block;
    background-color: transparent;
    text-overflow: ellipsis;
    border: none !important;
}