.main-warning-container {
  position: relative;
  top: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 84rem;
  margin: auto;
  z-index: 120;
}

.notice-box {
  border-left: 5px solid #0b3666;
  background: #ffffff;
  padding: 20px;
  max-width: 430px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
}

#close-warning-modal {
  display: none;
  color: #0057b7;
  transition: color 0.3s ease-in-out;
}
#close-warning-modal:hover {
  color: #002147; 
}

#close-warning-modal:focus {
  outline: 2px solid #ffcc00; 
  border-radius: 4px;
}


.notice-title {
  font-size: 22px;
  font-weight: bold;
  color: #0b3666;
  margin-bottom: 10px;
}

.notice-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.warning-link {
  color: #0072ce;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 795px) {
  #close-warning-modal {
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .main-warning-container {
  	top: 130px;
  }
}





