.grid-keywordElement {
	min-width: 50px;
	height: 24px !important;
	font-size: 12px;
	line-height: 18px;
	margin-top: 2px;
	border: 1px solid #b2bad2 !important;
	padding: 0 4px !important;
}

/* 로딩바 컨테이너 */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 시작은 검은색 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1; /* 투명도 시작값 */
  transition: opacity 0.3s ease; /* 점차 변화하도록 설정 */
}

/* 로딩 애니메이션 */
.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* 애니메이션 효과 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
