/* ===============================
   GAE Elementos - Stylesheet
   =============================== */

.gae-resumen {
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 8pt;
    width: 100%;
    background: #C1DCED !important;
}

.gae-resumen td {
    padding: 4px 6px;
    border: none;
    vertical-align: middle;
    font-weight: normal;
}

.gae-resumen .tiempo-col,
.gae-resumen .icon-col,
.gae-resumen .id-col,
.gae-resumen .avance-col,
.gae-resumen .codigo-col {
    text-align: center;
    white-space: nowrap;
}

.gae-resumen .codigo-col {
    background-color: #84BADC !important;
}

.gae-resumen .id-col {
    font-weight: bold;
    font-size: 14px;
    color: #1D3B6D;
}

.gae-resumen .tiempo-col img {
    display: block;
    margin: 0 auto 2px;
    width: 16px;
    height: 16px;
}

.gae-resumen .tarea-col {
    text-align: left;
    background-color: #84BADC !important;
}

.gae-resumen .resps {
    font-size: 7pt;
    color: #ffffff;
    text-align: right;
}

.gae-resumen .explicacion {
    display: none;
    background: #ffffff;
    font-size: 7pt;
    color: #333;
    padding: 6px;
}

.explicacion-icon {
    display: block;
    margin-top: 3px;
    cursor: pointer;
}

.explicacion-icon img {
    width: 12px !important;
    height: 12px !important;
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: hue-rotate(180deg) brightness(1.2);
}

.explicacion-icon:hover img {
    transform: scale(1.2);
    opacity: 1;
}

/* Progress Ring */
.progress-ring {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(#0073aa var(--deg), #e5e5e5 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.progress-ring::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
}
.progress-ring span {
    position: relative;
    font-size: 7pt;
    font-weight: normal;
    color: #0073aa;
}

/* Icono de persona y contador */
.gae-resumen .icon-col {
    position: relative;
    text-align: center;
    vertical-align: middle;
}
.gae-resumen .icon-col img {
    width: 30px;
    display: block;
    margin: 0 auto;
}
.gae-resumen .icon-col .count {
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8pt;
    color: white;
    font-weight: bold;
    line-height: 1;
}

/* ===== Icono de estado de concluidos ===== */
.gae-concluidos-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.gae-icono-estado {
  width: 35px;       /* ← ajusta aquí el ancho */
  height: auto;      /* mantiene proporción */
  display: block;
}


/* Fondo transparente universal */
.gae-resumen tr,
.gae-resumen td,
.gae-resumen .resps,
.gae-resumen .explicacion {
    background-color: transparent !important;
}

