/* Generacion de archivo:
Henry Alfredo Garcia Palacio
oficina de planeación */


/* control-social.css */
/* Estilo general */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.control-social {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Título principal */
.control-social h2 {
  color: #004a8d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.9rem;
  border-bottom: 3px solid #007acc;
  display: inline-block;
  padding-bottom: 5px;
}

/* Tarjetas */
.modalidad {
  background: #f1f6fb;
  border-left: 5px solid #007acc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.modalidad:hover {
  background: #e6f0fa;
  transform: translateY(-3px);
}

/* Subtítulos */
.modalidad h3 {
  color: #005b99;
  margin-bottom: 10px;
}

/* Listas y párrafos */
.modalidad p {
  margin: 8px 0;
}

.modalidad ul {
  margin: 10px 0 0 20px;
  list-style-type: disc;
}

/* Enlaces */
a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
  .control-social {
    padding: 15px;
  }

  .control-social h2 {
    font-size: 1.6rem;
  }

  .modalidad {
    padding: 15px;
  }
}

.control-social {
  margin: 2em 0;
  padding: 1.5em;
  background-color: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.control-social h2 {
  color: #0a4b78;
  font-size: 1.6em;
  margin-bottom: 1em;
  text-align: center;
}

details {
  background: #ffffff;
  border-radius: 8px;
  padding: 1em;
  border: 1px solid #d0d7de;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #084c61;
  font-size: 1.1em;
  list-style: none;
}

summary::marker {
  display: none;
}

summary:hover {
  color: #0a72b0;
}

.tabla-control-social {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 0.95em;
}

.tabla-control-social th {
  background-color: #eaf3f9;
  color: #084c61;
  text-align: left;
  padding: 10px;
  width: 25%;
  vertical-align: top;
}

.tabla-control-social td {
  padding: 10px;
  border-bottom: 1px solid #d0d7de;
  line-height: 1.5;
}

.tabla-control-social a {
  color: #0066cc;
  text-decoration: none;
}

.tabla-control-social a:hover {
  text-decoration: underline;
}

.tabla-plan-mejora {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.tabla-plan-mejora th,
.tabla-plan-mejora td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.tabla-plan-mejora th {
  background-color: #2b88c2;
  color: #ffffff;
  font-weight: 600;
}

.estado {
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
}

.estado.atendida {
  background-color: #4caf50; /* Verde */
}

.estado.en-tramite {
  background-color: #ff9800; /* Naranja */
}

.estado.pendiente {
  background-color: #9e9e9e; /* Gris */
}

a {
  color: #0077aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


