/* ========================================================
   Vida Cámara - Demo Estática Sidebar Look & Feel
   ======================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 16px 14px;
}

.container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* 1. Header y Logo Oficial */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f8;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 2. Barra divisoria naranja horizontal */
.divider-bar {
  width: 100%;
  height: 5px;
  background-color: #ed8b00;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* 3. Cuadrícula de botones en 2 columnas */
.buttons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.button-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 4. Estilos de los botones corporativos verdes */
.btn-orange,
.btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #16a34a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 8px;
  min-height: 48px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.15s ease, transform 0.05s ease;
}

.btn-orange:hover,
.btn-green:hover {
  background-color: #15803d;
}

.btn-orange:active,
.btn-green:active {
  background-color: #166534;
  transform: scale(0.98);
}

/* 5. Adaptabilidad para anchos reducidos (sidebar estrecho < 330px) */
@media (max-width: 330px) {
  body {
    padding: 10px 8px;
  }
  .buttons-container {
    gap: 6px;
  }
  .button-column {
    gap: 6px;
  }
  .btn-orange {
    font-size: 11px;
    padding: 6px 8px;
    min-height: 44px;
  }
}
