/* Student Project Popup / Banner */

#student-project-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 30, 45, 0.45);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#student-project-popup {
  max-width: 560px;
  width: 100%;
  background: #2f5fd7;
  color: white;
  padding: 28px 32px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
}

#student-project-popup h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: white;
}

#student-project-popup p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: white;
}

#student-project-popup a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

#student-project-close {
  margin-top: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  background: #14235c;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#student-project-close:hover,
#student-project-close:focus {
  background: #0d173f;
}

#student-project-banner {
  background: #2f5fd7;
  color: white;
  padding: 10px 18px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

#student-project-banner a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}