.seccion-marca-agua {
    position: relative;
    overflow: hidden; /* 🔥 Esto recorta el desbordamiento de la imagen */
    z-index: 0;
}

.marca-agua {
    position: absolute;
    top: 0;
    right: -200px; /* opcional según tu diseño */
    width: 1500px;
    height: 1500px;
    object-fit: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}


.grafica-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #063F23 !important;
    transition: box-shadow 0.3s ease;
}

.grafica-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.grafica-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.grafica-header h6 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

.card-reporte {
  border: none;
  border-radius: 1.25rem; /* Borde redondeado suave */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra elegante */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #ffffff8b 70%, #fdf5e6 100%);
}

.card-reporte:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-reporte .card-title {
  color: #063F23;
  font-weight: bold;
  border-bottom: 2px solid #EBAC06;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.card-reporte .text-muted {
  color: #063F23 !important;
}

.card-reporte canvas {
  margin-top: 0.5rem;
}

.card-reporte input[type="text"] {
  border: 1px solid #EBAC06;
  border-radius: 0.5rem;
}

.card-reporte table thead {
  background-color: #EBAC06;
  color: #fff;
}

.card-reporte table tbody tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}


.badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 1rem;
    background-color: #198754;
    color: #fff;
}

.grafica-meta {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.8rem;
}

.grafica-meta strong {
    color: #333;
}

.grafica-vereda {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
}



#tabla_descargas,#tabla_seguimiento {
    font-size: 0.875rem; /* Tamaño de letra más pequeño (equivale a .text-body-secondary) */
}

.col-tema {
    width: 15rem !important;
    min-width: 15rem !important;
    max-width: 15rem !important;
}
/* Encabezado verde oscuro */
thead th {
    background-color: #063F23 !important;
    color: white !important;
}
tbody td {
    background-color: #e1fdef52 !important;
    
}