@charset "UTF-8";
/******************************************************************************************
*
* GTAtools - styles.scss
* Framework base SCSS
* Autor: SYMONLINE
*
******************************************************************************************/
/*=========================================================================================
  ÍNDICE
===========================================================================================
01. Variables
02. Mixins
03. Reset
04. Base
05. Layout
06. Utilidades
07. Componentes
08. Formularios
09. Tablas
10. Navegación
11. Dashboard
12. Widgets
13. Módulos
14. Helpers
15. Animaciones
16. Responsive
=========================================================================================*/
/*=========================================================================================
01 VARIABLES
===========================================================================================*/
/*=========================================================================================
02 MIXINS
===========================================================================================*/
/*=========================================================================================
03 RESET
===========================================================================================*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #F8FAFC;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 600px), #F8FAFC;
  color: #334155;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #10B981;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

ul {
  list-style: none;
}

/*=========================================================================================
04 BASE
===========================================================================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
  color: #475569;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 1.5rem 0;
}

/*=========================================================================================
05 LAYOUT
===========================================================================================*/
.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: #0F172A;
  color: #ffffff;
  padding: 1.5rem;
}

.main {
  padding: 2rem;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/*=========================================================================================
06 UTILIDADES
===========================================================================================*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
  gap: 0.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.hidden {
  display: none;
}

.w-100 {
  width: 100%;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.p-2 {
  padding: 2rem;
}

/*=========================================================================================
07 COMPONENTES
===========================================================================================*/
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

.card__header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #10B981;
  color: #ffffff;
}
.btn-primary:hover {
  background: rgb(13.5641791045, 156.8358208955, 109.3611940299);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: #334155;
  border: 1px solid #CBD5E1;
}
.btn-secondary:hover {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #94A3B8;
}

.btn-link {
  background: transparent;
  color: #10B981;
  box-shadow: none;
  padding: 0.5rem 1rem;
}
.btn-link:hover {
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  text-decoration: underline;
}

.btn-warning {
  background: #F59E0B;
  color: #ffffff;
}
.btn-warning:hover {
  background: rgb(216.525984252, 139.3220472441, 8.874015748);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #D1FAE5;
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  font-size: 0.8rem;
  font-weight: 600;
}

/*=========================================================================================
08 FORMULARIOS
===========================================================================================*/
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #1E293B;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #94A3B8;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
  background: #ffffff;
}

/*=========================================================================================
09 TABLAS
===========================================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

th, td {
  padding: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}

th {
  background: #F8FAFC;
  color: #334155;
  font-weight: 600;
  text-align: left;
}

/*=========================================================================================
10 NAVEGACIÓN
===========================================================================================*/
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 1rem;
}

.user-menu {
  position: relative;
}

.user-menu-btn {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.user-menu-btn:hover, .user-menu-btn:focus {
  background: #E2E8F0;
  border-color: #CBD5E1;
}

.user-avatar {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #0F172A;
  font-size: 1rem;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  width: 160px;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 101;
  animation: fadeIn 0.15s ease-out;
}
.user-dropdown.show {
  display: flex;
}
.user-dropdown a {
  padding: 0.6rem 1rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.user-dropdown a:hover {
  background: #F8FAFC;
  color: #0F172A;
}
.user-dropdown a.text-danger {
  color: #EF4444;
}
.user-dropdown a.text-danger:hover {
  background: rgba(239, 68, 68, 0.05);
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

.menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #ffffff;
  border-radius: 8px;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/*=========================================================================================
10.5 SELECCION DE PROYECTOS
===========================================================================================*/
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  width: 100%;
}
.project-card:hover, .project-card:focus {
  border-color: #10B981;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
}
.project-card:active {
  transform: translateY(-2px) scale(0.98);
}

.project-card__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.project-card:hover .project-card__logo {
  transform: scale(1.05);
}

.project-card__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0F172A;
  text-align: center;
}

/*=========================================================================================
11 DASHBOARD
=========================================================================================*/
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
}

.stat__value {
  font-size: 2rem;
  font-weight: 700;
  color: #10B981;
}

/*=========================================================================================
12 WIDGETS
=========================================================================================*/
.widget {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
}

.widget__title {
  margin-bottom: 1rem;
}

/*=========================================================================================
13 MÓDULOS
=========================================================================================*/
.tool {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  padding: 2rem;
}

.tool__header {
  margin-bottom: 2rem;
}

.tool__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/*=========================================================================================
14 HELPERS
=========================================================================================*/
.shadow-sm {
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.shadow-md {
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
}

.shadow-lg {
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

.rounded {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 20px;
}

.bg-primary {
  background: #10B981;
  color: #ffffff;
}

.bg-light {
  background: #F1F5F9;
}

.bg-dark {
  background: #0F172A;
  color: #ffffff;
}

/*=========================================================================================
15 ANIMACIONES
=========================================================================================*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.4s ease;
}

/*=========================================================================================
16 RESPONSIVE
=========================================================================================*/
@media (max-width: 992px) {
  .app {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .main {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
}
#status-bar {
  text-align: center;
  padding: 0.2rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0;
  margin-bottom: 1.5rem;
  width: 100%;
}
#status-bar.online {
  background-color: #28a745;
  color: #ffffff;
  border: none;
}
#status-bar.offline {
  background-color: #d32f2f;
  color: #ffffff;
  border: none;
}

/* @media (prefers-color-scheme:dark){

body{
 background:#181818;
 color:#f2f2f2;
}

.card,
.widget,
.stat,
.tool,
.navbar,
table{
 background:#242424;
 color:#f2f2f2;
}

} */
/* =========================================================================================
   NUEVO DISEÑO DASHBOARD (TOMA DE DATOS Y ACCIONES)
   ========================================================================================= */
.dashboard-header {
  margin-bottom: 1.25rem;
}

.project-badge-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  margin-top: 0.5rem;
  text-align: left;
}

.project-badge-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  font-weight: 700;
}

.project-badge-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  font-family: "Outfit", sans-serif;
}

.dashboard-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .dashboard-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

.action-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-card:active {
  transform: scale(0.97);
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #10B981, rgb(12.752238806, 147.447761194, 102.8149253731));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}
.btn-primary-gradient:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-3px);
}
.btn-primary-gradient .action-card__title {
  color: #ffffff;
}
.btn-primary-gradient .action-card__desc {
  color: rgba(255, 255, 255, 0.85);
}

.btn-secondary-outline {
  background: #ffffff;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.btn-secondary-outline:hover {
  border-color: #10B981;
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
}
.btn-secondary-outline .action-card__title {
  color: #0F172A;
}
.btn-secondary-outline .action-card__desc {
  color: #64748B;
}

.action-card__icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.action-card__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.action-card__desc {
  font-size: 0.85rem;
  font-weight: 450;
  line-height: 1.3;
}

/*=========================================================================================
   18 GRUPOS DE FORMULARIOS (ACCORDEONES DETAILS/SUMMARY)
   ========================================================================================= */
.survey-group-details {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.survey-group-details[open] {
  border-color: #10B981;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}
.survey-group-details[open] .survey-group-summary {
  border-bottom: 1px solid #E2E8F0;
  background: rgba(16, 185, 129, 0.03);
  color: #10B981;
}
.survey-group-details[open] .survey-group-summary::after {
  transform: rotate(90deg);
  color: #10B981;
}

.survey-group-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: all 0.2s ease;
}
.survey-group-summary::-webkit-details-marker {
  display: none;
}
.survey-group-summary::after {
  content: "▶";
  font-size: 0.75rem;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.survey-group-summary:hover {
  background: #F8FAFC;
}

.survey-group-content {
  padding: 1.25rem;
  background: #ffffff;
}

/* Custom radio choices styles */
.survey-subgroup-details {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #F8FAFC;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.survey-subgroup-details[open] {
  border-color: #10B981;
}
.survey-subgroup-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  background: #F8FAFC;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: all 0.2s ease;
}
.survey-subgroup-summary::-webkit-details-marker {
  display: none;
}
.survey-subgroup-summary::after {
  content: "▶";
  font-size: 0.75rem;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.survey-subgroup-details[open] .survey-subgroup-summary::after {
  transform: rotate(90deg);
  color: #10B981;
}
.survey-subgroup-details[open] .survey-subgroup-summary {
  border-bottom: 1px solid #E2E8F0;
}
.survey-subgroup-content {
  padding: 1.15rem;
  background: #ffffff;
}

/* Custom radio choices styles */
.radio-choices-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.radio-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.radio-option-label:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}
.radio-option-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none;
}
.radio-option-label input[type="radio"]:checked {
  border-color: #10b981;
  background-color: #ffffff;
}
.radio-option-label input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #10b981;
  border-radius: 50%;
}
.radio-option-label:has(input[type="radio"]:checked) {
  background-color: rgba(16, 185, 129, 0.06);
  border-color: #10b981;
  color: #065f46;
}

/* Checkbox option styles (similar to radio) */
.checkbox-choices-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.checkbox-option-label:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}
.checkbox-option-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none;
}
.checkbox-option-label input[type="checkbox"]:checked {
  border-color: #10b981;
  background-color: #10b981;
}
.checkbox-option-label input[type="checkbox"]:checked::after {
  content: "✓";
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
}
.checkbox-option-label:has(input[type="checkbox"]:checked) {
  background-color: rgba(16, 185, 129, 0.06);
  border-color: #10b981;
  color: #065f46;
}

/* Mecanicos grid matrix styles */
.mecanicos-container-div {
  margin-top: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
}
.mecanicos-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.mecanicos-header-label {
  font-weight: 600;
  color: #334155;
  text-align: left;
  padding-bottom: 12px;
  font-size: 0.95rem;
}
.mecanicos-header-num {
  font-weight: 600;
  color: #64748b;
  padding-bottom: 12px;
  min-width: 35px;
  font-size: 0.9rem;
}
.mecanicos-row-label {
  font-weight: 500;
  color: #1e293b;
  text-align: left;
  padding: 10px 0;
  font-size: 0.9rem;
}
.mecanicos-table tbody tr {
  border-top: 1px solid #e2e8f0;
}
.mecanicos-table td {
  vertical-align: middle;
  padding: 10px 4px;
}
.mecanicos-table input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin: 0 auto;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
}
.mecanicos-table input[type="radio"]:checked {
  border-color: #10b981;
  background-color: #ffffff;
}
.mecanicos-table input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
}
}

/*=========================================================================================
   MODALS
===========================================================================================*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94A3B8;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #0F172A;
}

.modal-body {
  padding: 1.5rem;
}

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