body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 4px solid orange;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  font-size: 26px;
}

h1 {
  margin: 0;
  font-size: 20px;
  color: #000;
}


/* Botón llamada */
.call-btn {
  background: orange;
  color: black;
  width: 64px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s;
}

.call-btn:hover {
  background: #ff8c00;
  transform: scale(1.1);

}

/* Botón WhatsApp header */
.whatsapp-header-btn {
  background: green;
  color: black;
  width: 64px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s;
}

.whatsapp-header-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-header-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* SEARCH */
.search-container {
  padding: 25px 15px 10px;
  text-align: center;
}

#searchInput {
  width: 90%;
  max-width: 500px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

#searchInput:focus {
  outline: none;
  border-color: orange;
}

/* TABLE */
.table-container {
  padding: 10px 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #eee;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background: #000;
  color: #fff;
}

/* STATUS */
.disponible {
  color: #0a8f3c;
  font-weight: bold;
}

.sobrepedido {
  color: #d93025;
  font-weight: bold;
}

/* BUTTON */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* PAGINATION */
.pagination {
  text-align: center;
  padding: 20px;
}

.pagination button {
  margin: 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.pagination button:hover {
  background: orange;
  color: black;
}

/* MOBILE */
@media (max-width: 600px) {
  th, td {
    font-size: 12px;
    padding: 8px;
  }

  h1 {
    font-size: 16px;
  }
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}


.contacto-footer {
  margin: 40px 15px;
  padding: 20px;
  text-align: center;
  background: #fff7e6;
  border: 1px solid #ffe0b3;
  border-left: 5px solid orange;
  border-radius: 8px;
}

.contacto-footer p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.contacto-footer strong {
  color: #000;
}

.cta-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cta-whatsapp:hover {
  background: #1ebe5d;
}

