.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    background-color: var(--brand);
    border-radius: 10px;
    padding: 3px;
    gap: 0;
}

.lang-switch__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    height: 32px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch__link.is-active {
    background-color: var(--white-1);
    color: var(--brand);
    font-weight: 600;
}

.lang-switch__link:hover:not(.is-active) {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.048);
}

.lang-switch__link:first-child,
.lang-switch__link:last-child {
    border-radius: 7px;
}

.lang-switch__divider {
    display: none; 
}


.kafka.tooltip {
  position: relative;
  cursor: pointer;
}

/* 기본: 툴팁 없음 */
.kafka.tooltip::after {
  display: none;
}

/* data-tip에 값이 있을 때만 생성 */
.kafka.tooltip[data-tip]:not([data-tip=""])::after {
  content: attr(data-tip);
  display: block;

  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);

  background: #333;
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

/* hover 시 표시 */
.kafka.tooltip[data-tip]:not([data-tip=""]):hover::after {
  opacity: 1;
}

.preWrap{
  white-space: pre-wrap;	
}
	
.none{
  display:none !important;	
}

.hide{
  visibility:hidden !important;	
}

.center {
	text-align: center;
}

.cursorPointer{
	cursor: pointer;
}

#custom-modal #custom-confirm-modal-button.disabled {
	opacity:0.5;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-empty-box {
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--text-secondary);
  font-size: 14px;display: flex;
}