.glass-table {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 20px;

  width: 95%;
  margin: 0 auto;
  box-shadow: 
    inset 0 0 12px rgba(0, 0, 0, 0.4), /* 내부 그림자 (칠판 느낌) */
    0 4px 30px rgba(0, 0, 0, 0.1);     /* 외부 그림자 (입체감) */
  backdrop-filter: blur(8px);         /* 글래스모피즘 핵심 */
  -webkit-backdrop-filter: blur(8px); /* Safari 지원 */
  border: 1px solid rgba(255, 255, 255, 0.2); /* 얇은 경계선 */
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.glass-row {
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: stretch;
}

/* 셀에 입체+애니메이션 효과 */
.glass-inner {
  background: rgba(255, 255, 255, 0);

  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
              0 4px 8px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
  padding: 20px;
  position: relative;
}

.glass-inner:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4),
              0 4px 12px rgba(255, 255, 255, 0.15) inset;
}

.logo-cell {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0px;

}

.logo-img {
  width: 100%;
  min-width: 120px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.text-cell {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  overflow: hidden;
}

.text-cell > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
  animation: slideIn 1s ease;
}

@keyframes slideIn {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
