/* index_panel.css - Estilos para el panel de tiendas */
.tiendas-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 24px;
  margin: 32px 40px 24px 40px;
}
.tienda-card {
  background: linear-gradient(135deg, #e0ffe7 0%, #b7ffbf 40%, #43e97b 100%, #38f9d7 120%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67,233,123,0.22), 0 2px 8px rgba(56,249,215,0.10);
  border: 2.5px solid #43e97b;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 14px 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.tienda-card:hover {
  box-shadow: 0 8px 32px rgba(67,233,123,0.18);
  border-color: #232526;
}
.tienda-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}
.tienda-img {
  width: 100%;
  max-width: 320px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 2.5px solid #43e97b;
  box-shadow: 0 6px 20px rgba(67,233,123,0.15);
}
.tienda-nombre, .tienda-tipo, .tienda-direccion, .tienda-detalle, .tienda-ubicacion-min, .tienda-coordenadas {
  color: #232526;
  text-shadow: 1px 1px 4px #fff, 0 2px 8px #43e97b44;
}
.tienda-ubicacion-min, .tienda-direccion, .tienda-tipo, .tienda-coordenadas {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tienda-ubicacion-min {
  font-weight: 500;
  margin-bottom: 2px;
}
.tienda-nombre {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: center;
  color: #232526;
  text-shadow: 2px 2px 8px #fff, 0 2px 8px #43e97b88;
}
.tienda-tipo {
  color: #1a6d6a;
  text-shadow: 1px 1px 4px #fff, 0 2px 8px #43e97b44;
}
.tienda-direccion {
  color: #1a6d2a;
  text-shadow: 1px 1px 4px #fff, 0 2px 8px #43e97b44;
}
.tienda-ubicacion-min {
  color: #232526cc;
  text-shadow: 1px 1px 4px #fff, 0 2px 8px #43e97b44;
}
.tienda-coordenadas {
  color: #555;
  text-shadow: 1px 1px 4px #fff, 0 2px 8px #43e97b44;
}
.panel-paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 18px 0 10px 0;
}
.panel-btn {
  background: #43e97b;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.panel-btn:disabled {
  background: #b7ffbf;
  color: #888;
  cursor: not-allowed;
}
.panel-btn:hover:not(:disabled) {
  background: #38f9d7;
  box-shadow: 0 2px 8px rgba(56,249,215,0.15);
}
.panel-mensaje {
  text-align: center;
  color: #e74c3c;
  font-size: 1.1em;
  margin: 18px 0;
}

/* Estilos para la tabla de usuarios */
.usuarios-table {
  border-collapse: separate;
  border-spacing: 0 12px;
  width: 100%;
  background: #f8fff8;
  margin-top: 12px;
  box-shadow: 0 4px 24px #43e97b22;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.usuarios-table th, .usuarios-table td {
  background: #e0ffe7;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  text-align: left;
  box-shadow: 0 2px 8px #43e97b22;
}
.usuarios-table th {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.1em;
  box-shadow: none;
}
.usuarios-table tr {
  transition: box-shadow 0.2s, background 0.2s;
}
.usuarios-table tr:hover td {
  background: #b7ffbf;
  box-shadow: 0 4px 16px #43e97b33;
}
.usuarios-table input[type="text"],
.usuarios-table input[type="email"] {
  width: 98%;
  border-radius: 8px;
  border: 1.5px solid #43e97b;
  padding: 6px 10px;
  background: #fff;
  font-size: 1em;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
}
.usuarios-table input[type="text"]:focus,
.usuarios-table input[type="email"]:focus {
  border-color: #38f9d7;
  box-shadow: 0 2px 8px #38f9d744;
}
.usuarios-table button {
  border-radius: 8px;
  border: none;
  padding: 7px 16px;
  margin: 0 2px;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-family: inherit;
  font-weight: 500;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #43e97b22;
}
.usuarios-table button.btn-eliminar {
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}
.usuarios-table button:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  box-shadow: 0 4px 16px #38f9d744;
}
.usuarios-table button.btn-eliminar:hover {
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
}
@media (max-width: 700px) {
  .usuarios-table th, .usuarios-table td {
    padding: 8px 4px;
    font-size: 0.95em;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
