.vtw-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vtw-widget.vtw-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Card style: soft rounded box with gradient */
.vtw-style-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
  max-width: 340px;
}

.vtw-style-card .vtw-icon {
  font-size: 32px;
  line-height: 1;
}

.vtw-style-card .vtw-greeting {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.vtw-style-card .vtw-time {
  font-size: 13px;
  opacity: 0.9;
}

/* Text style: minimal, no card background */
.vtw-style-text {
  gap: 8px;
}

.vtw-style-text .vtw-icon {
  font-size: 20px;
}

.vtw-style-text .vtw-greeting {
  font-size: 16px;
  font-weight: 600;
  display: inline;
}

.vtw-style-text .vtw-time {
  font-size: 14px;
  color: #666;
  display: inline;
  margin-left: 6px;
}

@media (max-width: 480px) {
  .vtw-style-card {
    max-width: 100%;
    padding: 14px 16px;
  }
}
