/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333333;
  background-size: 150%;
  background-image: url('Fondo3.webp');
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

/* Header */
header {
  background-color: #0a8043;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: auto;
}

.title-container h1 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 14px 0 0 !important;
}

.title-container p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.qr-icon {
  width: 24px;
  height: 24px;
}

.terms-text {
  font-size: 0.75rem;
  color: #888;
  margin-top: 16px;
}

/* Footer */
footer {
  text-align: center;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 16px;
}

.copyright {
  font-size: 0.875rem;
  color: #666;
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    max-width: 100%;
  }

  .title-container h1 {
    font-size: 1rem;
  }

  .title-container p {
    font-size: 0.75rem;
  }
}

main {
  flex: 1;
}


.actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.action-btn:hover {
  background-color: #f5f5f5;
}

.action-btn.qr:hover {
  background-color: #e8f5e9;
  border-color: #c8e6c9;
}

.action-btn.edit:hover {
  background-color: #fff8e1;
  border-color: #ffecb3;
}

.action-btn.delete:hover {
  background-color: #ffebee;
  border-color: #ffcdd2;
}

.action-icon {
  width: 16px;
  height: 16px;
}

    .btn-outline-info {
      background-color: #0a8043;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
      gap: 6px;
      transition: background-color 0.2s;
    }

    .btn-outline-info:hover {
      background-color: #076d37;
    }