.notice-container {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  color: darkgray;
}
.notice-card {
  width: 200px;
  height: 200px;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.notice-thumbnail {
  height: 110px;
  width: 100%;
  object-fit: cover;
}
.notice-thumbnail-text {
  height: 110px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-content {
  padding: 0.5rem;
}
.notice-title {
  font-weight: bold;
  color: #333;
}
.notice-date {
  font-size: 0.8em;
  color: #777;
}

.notice-detailed-view {
  position: fixed;
  display: none;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100vh;
  z-index: 9999;
  box-sizing: border-box;
  object-fit: contain;
  padding: 2rem;
  background-color: white;
}

.notice-detailed-view-header {
  position: fixed;
  top: 5%;
  left: 5%;
  padding: 0.5rem;
  background-color: black;
  color: white;
}

.notice-detailed-view img {
  margin-top: 5%;
  height: 90%;
  width: 100%;
  object-fit: contain;
}

.notice-detailed-view > div {

}

.notice-detailed-view > iframe {
  width: 100%;
  height: 90%;
}
.notice-detail-title {
  font-size: large;
  text-decoration: underline;
}
.notice-detail-close {
  position: absolute;
  top: 1%;
  right: 1%;
  cursor: pointer;
  font-size: larger;
  font-weight: bold;
  color: var(--notification-color);
}

.hover-notice-tooltip {

}

.hover-notice-tooltip-items {
  background-color: darkgray;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 0.5rem;
  width: 150px;
  max-width: 80vw;
  border-radius: 0.15rem;
}

.hover-notice-tooltip-items > span, .hover-notice-tooltip-items > a {
  color: white;
  font-size: small;
  margin: 0.15rem;
}


.hover-notice-tooltip-items > span:hover {
  text-decoration: underline;
}

.hover-notice-tooltip:hover .hover-notice-tooltip-items {
  visibility: visible;
}