<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Background color for body */
.bg-gray-50 {
  background-color: #f9fafb;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Gallery grid styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
@media(max-width:800px){
  .gallery-grid {
  display: flex;
  flex-direction:column;
  gap: 1rem;
}
}

/* Pagination styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: gray;
  transition: color 0.3s;
  background: transparent;
  border: none;
  cursor: pointer;
}

.pagination button:hover {
  color: darkgray;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination span {
  font-size: 1rem;
  font-weight: medium;
  color: black;
}


/* Modal styles */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: auto;
}

.modal .close {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.modal .close:hover {
  transform: scale(1.1);
}

.modal .content {
  width: 100%;
  max-width: 64rem;
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.modal .image-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.modal .image-container img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.modal .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.modal .navigation button {
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform 0.3s;
}

.modal .navigation button:hover {
  transform: scale(1.1);
}

.modal .description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 1rem;
  transition: opacity 0.3s;
}

.modal .description h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.modal .description p {
  font-size: 1rem;
  background: white;
  color: black;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Gallery item styles */
.map-item {
  cursor: pointer;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  height: 30rem;
  margin: 0 auto;
  position: relative;
}

.map-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.map-item img:hover {
  transform: scale(1.05);
}

.map-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 1rem;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.7), transparent);
}

.map-item figcaption h3 {
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activeTab{
    background:#3b5998; /* Color de texto activo */
    font-weight:bold;
}
</pre></body></html>