/* style.css */
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f8f9fa;
  color: #333;
  max-width: 900px;
  margin: auto;
}

h1 {
  color: #2a5db0;
}

.site-link {
  margin-bottom: 30px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.site-link:hover {
  box-shadow: 0 0 15px rgba(42, 93, 176, 0.5);
}

.site-link a {
  font-weight: bold;
  font-size: 1.3em;
  color: #2a5db0;
  text-decoration: none;
}

.site-link a:hover {
  text-decoration: underline;
}

.site-link p {
  margin-top: 6px;
  font-size: 1em;
  color: #555;
}

iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #ccc;
  margin-top: 20px;
  border-radius: 6px;
}

a.back-link {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  color: #2a5db0;
  font-weight: bold;
}

a.back-link:hover {
  text-decoration: underline;
}
