/* -------------------------------------------- */
/* 🌙 ESTILO GLOBAL DEL SITIO                   */
/* -------------------------------------------- */
body {
    background: #e6e6e6;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  /* -------------------------------------------- */
  /* 🔐 login.html */
  /* -------------------------------------------- */
  body#login {
    background: #e6e6e6;
    color: #333;
  }
  
  /* -------------------------------------------- */
  /* ⏳ espera.html */
  /* -------------------------------------------- */
  body#espera {
    background: #e6e6e6;
    color: #333;
  }
  
  /* -------------------------------------------- */
  /* 📦 CONTENEDOR GENERAL */
  /* -------------------------------------------- */
  .container {
    background: #f5f5dc;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    width: 50%;
    margin: auto;
  }
  
  /* -------------------------------------------- */
  /* 📄 SECCIÓN DE CONTENIDO PRINCIPAL */
  /* -------------------------------------------- */
  .content {
    background: #f5f5dc;
    color: #333;
    width: 60%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  /* -------------------------------------------- */
  /* 🧭 NAVBAR */
  /* -------------------------------------------- */
  .navbar {
    background: #222;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  
  .navbar a:hover {
    color: #d4af37;
  }
  
  /* -------------------------------------------- */
  /* 🔘 BOTONES */
  /* -------------------------------------------- */
  .logout-button {
    background-color: #d4af37;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
  }
  
  .logout-button:hover {
    background-color: #b08c2b;
  }
  
  .main-button {
    background-color: #d4af37;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
  }
  
  .main-button:hover {
    background-color: #b08c2b;
  }
  
  .warn-button {
    background-color: #ffcc00;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .warn-button:hover {
    background-color: #d4af37;
  }
  
  .suspend-button {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .suspend-button:hover {
    background-color: #cc0000;
  }
  
  /* -------------------------------------------- */
  /* 🟨 BOTONES DE SERVICIOS EN compra.html */
  /* -------------------------------------------- */
  .servicio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
  }
  
  .servicio-btn {
    background-color: #d4af37;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .servicio-btn:hover {
    background-color: #b08c2b;
    transform: scale(1.05);
  }
  
  /* -------------------------------------------- */
  /* 📋 MODERACIÓN Y REPORTES */
  /* -------------------------------------------- */
  .moderation-container {
    padding: 20px;
    background: #ffffff;
    color: #111;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .moderation-box {
    background: #333;
    color: #f7f3e9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #reportesFraude {
    background-color: white;
    padding: 15px;
    border: 2px solid red;
    border-radius: 8px;
    margin-top: 10px;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    color: #cc0000;
  }
  
  /* -------------------------------------------- */
  /* 📱 RESPONSIVE DESIGN */
  /* -------------------------------------------- */
  @media (max-width: 768px) {
    .content,
    .container {
      width: 90%;
      padding: 15px;
    }
  
    .moderation-container {
      padding: 15px;
    }
  
    .main-button,
    .warn-button,
    .suspend-button,
    .servicio-btn {
      width: 100%;
      padding: 14px;
      font-size: 18px;
    }
  
    h3 {
      font-size: 20px;
    }
  
    .navbar {
      flex-direction: column;
      gap: 10px;
    }
  }
  

  /* Estilos necesarios para el formulario inline */
.form-sesion-inline {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.form-sesion-inline h4 {
    margin-top: 0;
    color: #007bff; /* Color que contraste, similar a los botones */
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.form-group-inline {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    vertical-align: top;
}

.form-group-inline label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 0.9em;
}

.form-group-inline input,
.form-group-inline select,
.form-group-inline textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 150px; /* Ancho fijo para inputs cortos */
}

.form-group-inline.full-width {
    display: block;
    width: 100%;
}

.form-group-inline.full-width textarea {
    width: 100%;
    resize: vertical;
}

/* Ajuste para que se vea mejor en móviles, si usas media queries */
@media (max-width: 600px) {
    .form-group-inline {
        display: block;
        margin-right: 0;
    }
    .form-group-inline input,
    .form-group-inline select {
        width: 100%;
    }
}