
body {
  margin: 0;
  padding: 0;
}
.card-icropci { 
  border-radius: 1rem; 
  border: 1px solid #ccc; 
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1); 
  background: #fff; 
  margin-bottom: 3rem;
}
#noticeText {
  resize: none;
  overflow-y: auto;
  max-height: 220px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
#noticeText::-webkit-scrollbar { width: 6px; }
#noticeText::-webkit-scrollbar-track { background: transparent; }
#noticeText::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 4px; }
.searchBtn {
  border-radius: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 16px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 0px solid rgba(0,0,0,0.1); 
  min-width: 130px;
  width: auto;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  color: #fff;
  justify-content: center;
  text-decoration: none;   
}
.searchBtn.btn-primary {
  background: linear-gradient(to bottom, #f78cd0, #C25098);
  box-shadow: inset 0 3px 0 rgba(255,255,255,0.3),
              inset 0 -3px 0 rgba(0,0,0,0.2),
              0 2px 2px rgba(0,0,0,0.3);
}
.searchBtn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 0 rgba(255,255,255,1),
              inset 0 -2px 0 rgba(0,0,0,0.8),
              0 6px 12px rgba(0,0,0,0.5);
  text-decoration: none;   
}
.searchBtn:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.7),
              inset 0 -2px 2px rgba(255,255,255,0.4),
              0 2px 4px rgba(0,0,0,0.3);
}
.searchBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.1) 100%
  );
  transform: skewX(-20deg);
}
.searchBtn:hover::after {
  animation: shine 1.2s ease-in-out forwards;
}
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}
.breadcrumb-nav {margin-top: 0px;margin-bottom: 10px;margin-left:-0px;}