.ghost-status-widget {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 550px;
  border-radius: 16px;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 9999;
  animation: ghost-status-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow:
    rgba(255, 255, 255, 1) 0 0 0 1px inset,
    rgba(0, 0, 0, 0.02) 0 0 0 1px,
    0 10px 40px -10px rgba(0, 0, 0, 0.1),
    0 4px 25px -5px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  color: #09090b;
}
@keyframes ghost-status-slide-in {
  from {
    transform: translateX(-50%) translateY(calc(100% + 32px));
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.ghost-status-content {
  padding: 16px;
}
.ghost-status-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ghost-status-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}
.ghost-status-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}
.ghost-status-info {
  flex: 1;
  min-width: 0;
}
.ghost-status-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ghost-status-time {
  font-size: 13px;
  opacity: 0.6;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ghost-status-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ghost-status-dismiss,
.ghost-status-updates {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  line-height: 20px;
  white-space: nowrap;
}
.ghost-status-dismiss {
  background-color: rgba(0, 0, 0, 0.05);
  color: inherit;
}
.ghost-status-dismiss:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.ghost-status-updates {
  background-color: #09090b;
  color: #fafafa;
}
@media (max-width: 640px) {
  .ghost-status-widget {
    width: calc(100% - 32px);
    max-width: none;
  }
  .ghost-status-main {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ghost-status-icon-box {
    display: none;
  }
  .ghost-status-actions {
    justify-content: stretch;
  }
  .ghost-status-dismiss,
  .ghost-status-updates {
    flex: 1;
    justify-content: center;
  }
}
