/* =============================================================
   jksugar.css — Mejoras visuales globales para SugarCRM
   Cargado en themes/default/tpls/_head.tpl
   Requiere: Font Awesome 4.6.3 (cargado antes en _head.tpl)
   ============================================================= */

/* ----------------------------------------------------------
   Botones — estilo base (secundario): todos los input.button
   Cubre DetailView, ListView (Buscar/Limpiar) y EditView
   ---------------------------------------------------------- */
input.button {
    background: #ffffff !important;
    color: #009ee0 !important;
    border: 1px solid #009ee0 !important;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 12px !important;
    font-size: 0.85rem;
    line-height: 1.4;
    min-height: 30px;
    margin-right: 4px;
}
input.button:hover {
    background: #e0f4fc !important;
    color: #007db3 !important;
    border-color: #007db3 !important;
}

/* ----------------------------------------------------------
   Primario: primer botón en barra de DetailView / EditView
   ---------------------------------------------------------- */
td.buttons:first-child input.button {
    background: #009ee0 !important;
    color: #ffffff !important;
    border-color: #009ee0 !important;
}
td.buttons:first-child input.button:hover {
    background: #007db3 !important;
    border-color: #007db3 !important;
    color: #ffffff !important;
}

/* ----------------------------------------------------------
   Subpaneles — ocultar texto "edit"/"quit"/"delete" junto al ícono
   Los <a> de texto puro no tienen elementos hijo; los de ícono sí (<i>)
   ---------------------------------------------------------- */
a.listViewTdToolsS1:not(:has(*)) {
    display: none !important;
}

/* ----------------------------------------------------------
   Primario: botón Buscar en ListView
   ---------------------------------------------------------- */
#search_form_submit {
    background: #009ee0 !important;
    color: #ffffff !important;
    border-color: #009ee0 !important;
}
#search_form_submit:hover {
    background: #007db3 !important;
    border-color: #007db3 !important;
    color: #ffffff !important;
}

