body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f0f2f5;
}

.container {
  display: flex;
  height: 100vh;
}

.left-side {
  flex: 1;
  background: #1877f2;
  color: white;
  padding: 50px;
}

.left-side h1 {
  font-size: 3em;
}

.left-side ul {
  margin-top: 20px;
}

.right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
}

.card input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.card button {
  width: 95%;
  padding: 10px;
  background: #1877f2;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.card button:hover {
  background: #145db2;
}

/*Estaba en home.html - lo estoy cambiando de lugar a mano - 31-OCT-2025*/

body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f0f2f5;
    }
    header {
      background-color: #1877f2;
      color: white;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    header h1 {
      font-size: 20px;
      margin: 0;
    }
    .search-bar {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .search-bar input[type="text"] {
      padding: 5px;
      width: 250px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    .search-bar select, .search-bar button {
      padding: 5px 10px;
      border: none;
      border-radius: 5px;
    }
    .search-bar button {
      background-color: #42b72a;
      color: white;
      cursor: pointer;
    }
    .search-bar button:hover {
      background-color: #36a420;
    }
    .user-menu {
      position: relative;
    }
    .user-menu button {
      background-color: #1877f2;
      border: none;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }
    .user-dropdown {
      display: none;
      position: absolute;
      right: 0;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      border-radius: 5px;
      margin-top: 5px;
    }
    .user-dropdown a {
      display: block;
      padding: 10px;
      text-decoration: none;
      color: black;
    }
    .user-dropdown a:hover {
      background-color: #f0f0f0;
    }
    .main-content {
      padding: 20px;
      min-height: calc(100vh - 60px);
      background-color: white;
      margin: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow-x: auto; /* Barra desplazamiento horizontal */
    }
    table {
      border-collapse: collapse;
      width: max-content; /* Para que se expanda horizontalmente */
      min-width: 100%;
    }
    th, td {
      border: 1px solid #ccc;
      padding: 5px;
      text-align: left;
      white-space: nowrap; /* Evita que el texto se divida */
    }
    th {
      background-color: #1877f2;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1;
    }

    /* Agregando styles para boton de form*/
    .form-buttons {
        grid-column: 1 / -1; /* Hace que ocupe el ancho completo */
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }