
body{
  margin: 0;
}

.no-script-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  display: flex;
  background: linear-gradient(
    180deg,
    #fff -23.05%,
    #eef2f8 47.88%,
    #d6dfee 147.61%
  );
  height: calc(100dvh - 60px);
  overflow: hidden;
}

/* Header */
.no-script-header {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  padding: 12px 20px 6px 16px;
  position: sticky;
  height: 60px;
  background: #f7f8fa;
  color: #000;
  box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.15);
  display: flex;
  /* padding: 10px; */
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.no-script-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #5b21b6;
  font-size: 18px;
}

.no-script-logo-icon img {
  width: 90px;
  height: 50px;
}

.no-script-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.no-script-icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.no-script-icon-btn:hover {
  background: #e5e7eb;
}

.no-script-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.no-script-profile-pic img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.no-script-profile-info {
  display: flex;
  flex-direction: column;
}

.no-script-profile-name {
  font-size: 14px;
  margin-bottom: 5px;
  color: #000;
}

.no-script-profile-link {
  font-size: 12px;
  color: indigo;
}

/* Sidebar */
.no-script-sidebar {
  width: 380px;
  height: calc(100% - 60px);
  padding: 10px;
  overflow-y: auto;
  border-right: 1px solid rgba(51, 51, 51, 0.06);
}

.no-script-ask-btn {
  width: 100%;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  background: rgb(16, 13, 71);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.no-script-ask-btn:hover {
  transform: translateY(-2px);
}

.no-script-question-item {
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.no-script-question-item:hover {
  background: #f3f4f6;
}

.no-script-question-text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.no-script-answered {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #10b981;
}

.no-script-checkmark {
  width: 16px;
  height: 16px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.no-script-conversations {
  background-color: white;
}

/* Main Content */
.no-script-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-script-welcome-section {
  max-width: 700px;
  text-align: center;
}

.no-script-welcome-title {
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 30px;
}

.no-script-welcome-title span {
  background: rgb(26, 59, 181);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-script-features-list {
  text-align: left;
  margin-bottom: 40px;
}

.no-script-feature-item {
  padding: 12px 0;
  font-size: 16px;
  color: #4b5563;
  display: flex;
  align-items: start;
  gap: 12px;
}

.no-script-input-section {
  width: 100%;
  max-width: 800px;
  bottom: 40px;
  padding: 0 40px;
}

.no-script-input-container {
  background: white;
  border-radius: 16px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-script-input-field {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #374151;
}

.no-script-input-field::placeholder {
  color: #9ca3af;
}

.no-script-send-btn {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: transform 0.2s;
  font-size: 18px;
  transform: rotate(-45deg);
}

.no-script-send-btn:hover {
  transform: scale(1.05);
}

.no-script-beta-info {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #6b7280;
}

.no-script-beta-info a {
  color: #1e1818;
  text-decoration: none;
}

.no-script-ask-footer-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 70px;
  font-size: 12px;
}

.no-script-ask-footer-links a {
  color: #000;
}

@media (max-width: 768px) {
  .no-script-container {
    flex-direction: column;
  }

  .no-script-sidebar {
   display: none;
  }

  .no-script-main-content {
    padding: 20px;
  }

  .no-script-welcome-title {
    font-size: 28px;
  }

  .no-script-profile-info {
    display: none;
  }

  .no-script-buy-plan {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }

  .no-script-footer-links {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
  }

  .no-script-input-section {
    bottom: 150px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .no-script-header {
    padding: 10px 15px;
  }

  .no-script-logo {
    font-size: 16px;
  }

  .no-script-header-right {
    gap: 10px;
  }

  .no-script-welcome-title {
    font-size: 24px;
  }

  .no-script-feature-item {
    font-size: 14px;
  }
}

