<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Styles for Unisannio Google Maps.
 */

/* Entrance Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unisannio-google-maps-container {
  margin: 40px auto;
  max-width: 1400px;
  width: 98%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  padding: 25px 40px 30px;
  position: relative;
  border: none;
  opacity: 0;
}

.unisannio-google-maps-container.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.unisannio-maps-title {
  text-align: center;
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 800;
  color: #1a3d7c;
  letter-spacing: 0.8px;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.unisannio-maps-title .title-link {
  color: #1a3d7c;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.unisannio-maps-title .title-link:hover {
  color: #3498db;
}

.unisannio-maps-title .title-link:after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1a3d7c, #3498db, #6ab7ff);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.unisannio-maps-title .title-link:hover:after {
  width: 140px;
}

.unisannio-maps-description {
  text-align: center;
  margin: -10px auto 25px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  font-weight: 400;
}

.unisannio-google-map {
  min-height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  pointer-events: none;
  cursor: default;
  position: relative;
}

.unisannio-google-map:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: transparent;
}

/* Map error state */
.map-error {
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.map-error p {
  font-size: 18px;
  color: #555;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

.unisannio-maps-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 12px 20px;
  background-color: #f8f9fa;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
}

/* Info Window Styling */
.gm-style .gm-style-iw-c {
  padding: 16px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  pointer-events: none !important;
}

.gm-style .gm-style-iw-t::after {
  display: none !important;
}

.gm-style-iw-d {
  overflow: hidden !important;
}

.gm-ui-hover-effect {
  display: none !important;
}

.map-info-window {
  text-align: center;
  padding: 5px;
}

.map-info-window h3 {
  margin: 0 0 8px;
  color: #1a3d7c;
  font-weight: 700;
  font-size: 18px;
}

.map-info-window p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
}

.coordinates {
  font-family: monospace;
  background-color: rgba(26, 61, 124, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.institution {
  font-weight: 600;
  color: #1a3d7c;
}

/* Responsive styles */
@media (max-width: 992px) {
  .unisannio-google-maps-container {
    padding: 25px 30px 30px;
    max-width: 95%;
  }
  
  .unisannio-maps-title {
    font-size: 28px;
  }
  
  .unisannio-google-map {
    min-height: 450px;
  }
}

@media (max-width: 576px) {
  .unisannio-google-maps-container {
    padding: 20px 15px 25px;
    margin: 30px auto;
  }
  
  .unisannio-maps-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .unisannio-maps-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .unisannio-google-map {
    min-height: 350px;
  }
} </pre></body></html>