/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap);
/*!**************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle (1) ***!
  \**************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f8f9fa;
  color: rgb(88, 85, 85);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 15px;
}

p,
.text-content {
  max-width: 65ch;
  line-height: 1.7;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background: rgb(155, 196, 28);
  color: white;
  padding: 28px 32px;
  margin-bottom: 32px;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.header h1 {
  font-size: 2.4em;
  /* margin-bottom: 6px;*/
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header p {
  opacity: 0.9;
  font-size: 1.05em;
  font-weight: 400;
  max-width: 50ch;
}

.header a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  padding: 8px 16px;
  /* border-radius: 6px;*/
  transition: all 0.3s;
  font-weight: 500;
}

.header a:hover {
  background: rgba(255, 255, 255, 0.15);
  /* border-radius: 6px;*/
}

.card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
/*  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
 /* border: 1px solid #e2e8f0;*/
  transition: box-shadow 0.2s ease;
}

.card:hover {
 /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);*/
}

.card h2 {
  color: #22543d;
  margin-bottom: 24px;
  font-size: 1.75em;
  font-weight: 700;
  border-bottom: 2px solid rgb(88, 85, 85);
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: 1px solid #e2e8f0;
}

.table th,
.table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.table th {
  background: #d1d1d14a;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.table tbody tr {
  transition: all 0.2s;
}

.table tbody tr:hover {
  background-color: #f7fafc;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', sans-serif;
}

.btn:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.btn:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-primary {
  background: rgb(155, 196, 28);
  color: white;
}

.btn-primary:hover {
  background: rgb(88, 85, 85);
  color: white;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.input {
  padding: 12px 16px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  background: white;
  font-family: 'Open Sans', sans-serif;
}

.input:focus {
  outline: none;
  border-color: rgb(155, 196, 28);
  box-shadow: 0 0 0 2px rgba(155, 196, 28, 0.2);
}

.loading {
  text-align: center;
  padding: 60px;
  color: #718096;
  font-size: 1.1em;
}

.loading::before {
  content: "⏳ ";
  font-size: 1.5em;
  display: block;
  margin-bottom: 10px;
}

.error {
  background: #fed7d7;
  color: #742a2a;
  padding: 20px;
  border-radius: 0;
  margin: 20px 0;
  border-left: 4px solid #e53e3e;
  font-weight: 500;
  max-width: 65ch;
}

/* Badges y tags */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: #c6f6d5;
  color: #22543d;
}

.badge-warning {
  background: #fefcbf;
  color: #744210;
}

.badge-danger {
  background: #fed7d7;
  color: #742a2a;
}

.badge-info {
  background: #bee3f8;
  color: #2c5282;
}

/* Tipografía con ancho de párrafo */
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 65ch;
}

p,
li,
td,
th {
  /*max-width: 65ch;*/
  max-width: none !important
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .card {
    padding: 20px;
  }

  .table {
    font-size: 0.9em;
  }

  .table th,
  .table td {
    padding: 10px 8px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    max-width: 100%;
  }
}

.custom_icons_color {
  color: #00000059;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 16px;
  color: #00000059;
}

/*//////////////////////ajustes style*/
/* CONTENEDOR GENERAL */
.filters-container {
  margin-bottom: 25px;
}

/* FILAS */
.filters-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* INPUTS */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 10px;
  font-size: 20px;
  color: #6c757d;
}

.modern-input {
  padding: 10px 12px 10px 38px;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 220px;
  font-size: 14px;
  transition: border-color .2s ease;
}

.modern-input:focus {
  border-color: #9bc41c;
  outline: none;
}

/* BOTONES */
.modern-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: white;
  transition: opacity .2s ease;
  text-decoration: none;
}

.modern-btn:hover {
  opacity: 0.85;
}

.modern-btn.primary {
  background: #9bc41c;
}

.modern-btn.secondary {
  background: #718096;
}

.modern-btn.success {
  background: #48bb78;
}

.modern-btn.info {
  background: #4299e1;
}

.modern-btn.default {
  background: #6c757d;
}

/* TOTAL */
.total-label {
  margin-left: auto;
  color: #718096;
  font-size: 0.9em;
}

/* ICONOS */
.material-icons-outlined {
  font-size: 20px;
}

/*****Tablas estilo gobal */

.table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px; 
  background: transparent;
  margin-top: 20px;
}

.table-modern thead tr {
  background: #e2e8f0; 
}

.table-modern thead th {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #475569;
  text-align: left;
  border-bottom: none;
}

.table-modern thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
.table-modern thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

/* filas */
.table-modern tbody tr {
  background: white;
  border-radius: 8px;
  transition: all 0.15s ease;
}

/* Celdas */
.table-modern tbody td {
  padding: 14px 16px;
  border-bottom: none;
  font-size: 0.9rem;
  color: #4a5568;
}

.table-modern tbody tr:hover {
  background: #eef2f6; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); 
  transform: translateY(-2px); 
  transition: all 0.18s ease;
}

/* bordes */
.table-modern th,
.table-modern td {
  border: none !important;
}

.table-scroll {
  overflow-x: auto;
  width: 100%;
}

.table-modern .btn {
  transition: background 0.15s ease, transform 0.15s ease;
}

.table-modern .btn:hover {
  transform: translateY(-1px);
}

/* Botones de accion*/

.table-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #f8fafc; 
  color: #475569;
  transition: all 0.15s ease;
}

.table-action-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.table-action-view {
  color: #2b6cb0;
}

.table-action-edit {
  color: #b7791f;
}

.table-action-delete {
  color: #c53030;
}

.table-action-view:hover {
  background: #bee3f8;
  border-color: #90cdf4;
}

.table-action-edit:hover {
  background: #fefcbf;
  border-color: #faf089;
}

.table-action-delete:hover {
  background: #fed7d7;
  border-color: #feb2b2;
}

.table-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Botón secundario Crear */
.btn-create {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 6px;
    background: #f3f3f3;
    border: 1px solid #e0e0e0;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-create:hover {
    background: #9bc41c;
    border-color: #9bc41c;
    color: #fff;
}





/*# sourceMappingURL=styles.css.map*/