#dropArea {
    background-color: #f0f8ff;
    transition: border 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
  }

  #dropArea.hover {
    background-color: #d8eefe;
    border-style: dashed;
  }
     * {
      box-sizing: border-box;
    }
 
    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar ul li {
      padding: 15px 20px;
      cursor: pointer;
    }

    .sidebar ul li:hover {
      background-color:rgb(107, 107, 107);
    }

      .card {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 600px;
    }

    h3 {
      margin-top: 0;
    }
    
 
    input[type="file"] {
      margin-top: 20px;
      margin-bottom: 20px;
    }

    button {
      background-color: #3498db;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }

    button:hover {
      background-color: #2980b9;
    }

    @media (max-width: 768px) {
      .sidebar {
        width: 100%;
        height: auto;
        position: relative;
      }
      .topbar {
        left: 0;
      }
      .content {
        margin-left: 0;
        margin-top: 120px;
      }
    }
   
/* TIPOGRAFÍA Y ESTRUCTURA BASE */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #333;
}

/* TOPBAR TIPO HOLDED */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  justify-content: space-between;
}

.topbar .titulo {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
      .titulo {
  font-family: "Domine", serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}
/* SIDEBAR MODERNO */
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 210px;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 20px 0;
  overflow-y: auto;
  transition: width 0.3s ease;
  z-index: 999;
}

.sidebar h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  color: #6b7280;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sidebar ul li i {
  margin-right: 10px;
  color: #6b7280;
}

.sidebar ul li:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.sidebar.collapsed {
  width: 0;
  padding: 0;
  overflow: hidden;
}

/* CONTENIDO PRINCIPAL */
.content {
  margin-left: 410px;
  margin-top: 60px;
  padding: 25px;
  transition: margin-left 0.3s ease;
}

.content.expanded {
  margin-left: 0;
}

/* BOTÓN TOGGLE SIDEBAR */
#btnToggleSidebar {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
}

/* TABLA Y WRAPPER */
.table-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .content {
    margin-left: 0;
  }
}
.progress {
  background-color: #e5e7eb;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.progress-bar {
  transition: width 0.6s ease;
}
 .table .estatus-pagado {
 background-color:rgb(0, 197, 16);
  color:rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
}

.table .estatus-pendiente {
 background-color:rgb(247, 189, 0);
  color:rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
}
/* Estilo moderno para la tabla de facturas */
#facturasTable {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.87rem;
  color: #374151; /* gris oscuro moderno */
}

#facturasTable thead th {
  font-weight: 600;
  color: #1f2937; /* gris más oscuro */
  background-color: #f9fafb; /* fondo claro */
}

#facturasTable tbody td {
  vertical-align: middle;
}
.activobar{
color:rgb(39, 122, 0);
}
