@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

/* You can add global styles to this file, and also import other style files */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #F0EAD6;
}
/* Chatbot Styles */
.chatbot {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.chatbot__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
  background: #ffffff;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
}
.chatbot__header h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  flex-shrink: 0;
  color: #2d3748;
}
.chatbot__header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chatbot__logo {
  height: 50px;
  width: auto;
}
.chatbot__title-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.chatbot__user-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chatbot__welcome-text {
  color: #718096;
  font-size: 0.75rem;
}
.chatbot__login-button {
  padding: 0.5rem 1rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
  min-height: 36px;
}
.chatbot__login-button:hover {
  background-color: #2563eb;
}
.chatbot__logout-button {
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
  min-height: 36px;
}
.chatbot__logout-button:hover {
  background-color: #e5e7eb;
}
.chatbot__header-actions {
  display: flex;
  align-items: center;
}
.chatbot__menu-container {
  position: relative;
}
.chatbot__menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: transparent;
  color: #4a5568;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  min-height: 36px;
  min-width: 36px;
}
.chatbot__menu-button:hover {
  background-color: #f7fafc;
  color: #2d3748;
}
.chatbot__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
}
.chatbot__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: none;
  border-bottom: 1px solid #f7fafc;
  color: #2d3748;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}
.chatbot__dropdown-item:last-child {
  border-bottom: none;
}
.chatbot__dropdown-item:hover {
  background-color: #f7fafc;
}
.chatbot__dropdown-item--subscribe:hover {
  background-color: #fef5e7;
  color: #DDA448;
}
.chatbot__dropdown-item--subscribe svg {
  color: #DDA448;
}
.chatbot__dropdown-item--logout:hover {
  background-color: #fff5f5;
  color: #e53e3e;
}
.chatbot__dropdown-item--logout svg {
  color: #718096;
}
.chatbot__dropdown-item--logout:hover svg {
  color: #e53e3e;
}
.chatbot__dropdown-item svg {
  flex-shrink: 0;
}
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chatbot__input-form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-top: 1px solid #e2e8f0;
}
.chatbot__input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  border-radius: 0.375rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot__input:focus {
  border-color: #4a5568;
}
.chatbot__send-button {
  padding: 0.75rem 1.5rem;
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #cbd5e0;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.chatbot__send-button:hover {
  background: #edf2f7;
  border-color: #a0aec0;
}
.chatbot__cancel-button {
  padding: 0.75rem 1.5rem;
  background: #e53e3e;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.chatbot__cancel-button:hover {
  background: #c53030;
}
/* Chat Message Styles */
.chat-message {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  max-width: 100%;
}
.chat-message--user {
  background: transparent;
  border: 1px solid #cbd5e0;
}
.chat-message--tool-result {
  padding: 0.5rem 1rem;
  background: transparent;
}
.chat-message--assistant {
  /* No background - takes full width without bubble */
}
.chat-message--system {
  align-self: center;
  background: #fef5e7;
  max-width: 90%;
}
.chat-message--error {
  align-self: center;
  background: #fff5f5;
  border: 1px solid #fc8181;
  color: #c53030;
  max-width: 90%;
}
.chat-message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.chat-message__role {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.chat-message__robot-icon {
  color: #DDA448;
  font-size: 1.125rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.chat-message__timestamp {
  font-size: 0.75rem;
  color: #718096;
}
.chat-message__content {
  color: #2d3748;
  line-height: 1.5;
}
/* Tool Result Styles */
.chat-message__tool-result {
  cursor: pointer;
  user-select: none;
}
.chat-message__tool-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #f7fafc;
  border-radius: 0.375rem;
  border: 1px solid #cbd5e0;
  font-size: 0.875rem;
  color: #4a5568;
  transition: background-color 0.2s;
}
.chat-message__tool-result-header:hover {
  background: #edf2f7;
}
.chat-message__tool-result-toggle {
  font-size: 0.75rem;
  color: #718096;
  font-weight: bold;
}
.chat-message__tool-result-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chat-message__tool-result-item {
  background: #f7fafc;
  border: 1px solid #cbd5e0;
  border-radius: 0.375rem;
  overflow: hidden;
}
.chat-message__tool-result-item-header {
  padding: 0.5rem 0.75rem;
  background: #edf2f7;
  border-bottom: 1px solid #cbd5e0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
}
.chat-message__tool-result-id {
  font-size: 0.7rem;
  font-weight: 400;
  color: #718096;
  margin-left: 0.5rem;
}
.chat-message__tool-result-item-content {
  margin: 0;
  padding: 1rem;
  background: #1a202c;
  color: #e2e8f0;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', 'Courier New', monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
  tab-size: 2;
  -moz-tab-size: 2;
}
/* Markdown Styles */
.chat-message__content h1,
.chat-message__content h2,
.chat-message__content h3,
.chat-message__content h4,
.chat-message__content h5,
.chat-message__content h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.25;
}
.chat-message__content h1 { font-size: 1.5rem; }
.chat-message__content h2 { font-size: 1.25rem; }
.chat-message__content h3 { font-size: 1.1rem; }
.chat-message__content p {
  margin-bottom: 0.75rem;
}
.chat-message__content ul,
.chat-message__content ol {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.chat-message__content li {
  margin-bottom: 0.25rem;
}
.chat-message__content code {
  background: #edf2f7;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
}
.chat-message__content pre {
  background: #2d3748;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  margin-bottom: 0.75rem;
}
.chat-message__content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
.chat-message__content blockquote {
  border-left: 4px solid #cbd5e0;
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 0.75rem;
  color: #718096;
}
.chat-message__content a {
  color: #DDA448;
  text-decoration: underline;
}
.chat-message__content a:hover {
  color: #C98F3A;
}
/* Message-level approval actions */
.chat-message__approval-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}
.chat-message__approve-button,
.chat-message__deny-button {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-message__approve-button {
  background: #8A9A7A;
  color: white;
}
.chat-message__approve-button:hover {
  background: #7A8A6A;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(138, 154, 122, 0.3);
}
.chat-message__deny-button {
  background: #f56565;
  color: white;
}
.chat-message__deny-button:hover {
  background: #e53e3e;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(245, 101, 101, 0.3);
}
.chat-message__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.75rem;
  border: 1px solid #cbd5e0;
}
.chat-message__content th,
.chat-message__content td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: 1px solid #cbd5e0;
}
.chat-message__content th {
  background: #edf2f7;
  font-weight: 600;
  color: #2d3748;
}
.chat-message__content tbody tr:nth-child(even) {
  background: #f7fafc;
}
.chat-message__content tbody tr:hover {
  background: #edf2f7;
}
/* Tool Request Styles */
.tool-request {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background: white;
  border: 1px solid #cbd5e0;
}
.tool-request--approved {
  border-color: #8A9A7A;
  background: #f0f4ed;
}
.tool-request--denied {
  border-color: #f56565;
  background: #fff5f5;
}
.tool-request__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.tool-request__icon {
  font-size: 1.25rem;
}
.tool-request__name {
  font-weight: 600;
  color: #2d3748;
  flex: 1;
}
.tool-request__status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
}
.tool-request__status--pending {
  background: #fef5e7;
  color: #c05621;
}
.tool-request__status--approved {
  background: #f0f4ed;
  color: #5a6650;
}
.tool-request__status--denied {
  background: #fff5f5;
  color: #c53030;
}
.tool-request__parameters {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: #f7fafc;
  border-radius: 0.25rem;
  overflow-x: auto;
}
.tool-request__parameters pre {
  font-size: 0.875rem;
  color: #2d3748;
  font-family: 'Courier New', Courier, monospace;
}
.tool-request__search-params {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tool-request__param-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.375rem;
  border-radius: 0.25rem;
}
.tool-request__param-label {
  font-weight: 600;
  color: #4a5568;
  min-width: 120px;
}
.tool-request__param-value {
  color: #2d3748;
  flex: 1;
}
.tool-request__actions {
  display: flex;
  gap: 0.5rem;
}
.tool-request__button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.tool-request__button--approve {
  background: #8A9A7A;
  color: white;
}
.tool-request__button--approve:hover {
  background: #7A8A6A;
}
.tool-request__button--deny {
  background: #f56565;
  color: white;
}
.tool-request__button--deny:hover {
  background: #e53e3e;
}
/* Multiple Tool Requests Styles */
.multiple-tool-requests {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: white;
  border: 2px solid #cbd5e0;
}
.multiple-tool-requests--pending {
  border-color: #ed8936;
}
.multiple-tool-requests--approved {
  border-color: #8A9A7A;
  background: #f0f4ed;
}
.multiple-tool-requests--denied {
  border-color: #f56565;
  background: #fff5f5;
}
.multiple-tool-requests--mixed {
  border-color: #a0aec0;
}
.multiple-tool-requests__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.multiple-tool-requests__icon {
  font-size: 1.5rem;
}
.multiple-tool-requests__title {
  font-weight: 600;
  color: #2d3748;
  flex: 1;
  font-size: 1rem;
}
.multiple-tool-requests__status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
}
.multiple-tool-requests__status--pending {
  background: #fef5e7;
  color: #c05621;
}
.multiple-tool-requests__status--approved {
  background: #f0f4ed;
  color: #5a6650;
}
.multiple-tool-requests__status--denied {
  background: #fff5f5;
  color: #c53030;
}
.multiple-tool-requests__status--mixed {
  background: #f7fafc;
  color: #4a5568;
}
.multiple-tool-requests__tools {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-request-item {
  padding: 0.5rem;
  border-radius: 0.25rem;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}
.tool-request-item--pending {
  border-color: #fbd38d;
  background: #fffaf0;
}
.tool-request-item--approved {
  border-color: #a8b89e;
  background: #f0f4ed;
}
.tool-request-item--denied {
  border-color: #fc8181;
  background: #fff5f5;
}
.tool-request-item__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.tool-request-item__number {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.875rem;
  min-width: 1.5rem;
}
.tool-request-item__label {
  color: #718096;
  font-size: 0.875rem;
  font-weight: 500;
}
.tool-request-item__name {
  font-weight: 600;
  color: #2d3748;
  flex: 1;
  font-size: 0.875rem;
}
.tool-request-item__status {
  font-size: 0.625rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
}
.tool-request-item__status--pending {
  background: #fef5e7;
  color: #c05621;
}
.tool-request-item__status--approved {
  background: #f0f4ed;
  color: #5a6650;
}
.tool-request-item__status--denied {
  background: #fff5f5;
  color: #c53030;
}
.multiple-tool-requests__actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
}
.multiple-tool-requests__button {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.multiple-tool-requests__button--approve {
  background: #8A9A7A;
  color: white;
}
.multiple-tool-requests__button--approve:hover {
  background: #7A8A6A;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(138, 154, 122, 0.3);
}
.multiple-tool-requests__button--deny {
  background: #f56565;
  color: white;
}
.multiple-tool-requests__button--deny:hover {
  background: #e53e3e;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(245, 101, 101, 0.3);
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Chatbot container adjustments */
  .chatbot {
    max-width: 100%;
    box-shadow: none;
  }

  /* Header responsive layout */
  .chatbot__header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .chatbot__header h1 {
    font-size: 1.25rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .chatbot__user-section {
    width: 100%;
    justify-content: space-between;
  }

  .chatbot__welcome-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chatbot__login-button,
  .chatbot__logout-button {
    min-height: 44px;
    padding: 0.625rem 1rem;
  }

  /* Messages area padding */
  .chatbot__messages {
    padding: 1rem;
  }

  /* Chat message adjustments */
  .chat-message {
    max-width: 100%;
    padding: 0.875rem;
  }

  .chat-message__content {
    font-size: 0.9375rem;
  }

  /* Input form adjustments */
  .chatbot__input-form {
    padding: 0.75rem;
    gap: 0.375rem;
  }

  .chatbot__input {
    padding: 0.875rem;
    font-size: 1rem;
    min-height: 44px;
  }

  .chatbot__send-button,
  .chatbot__cancel-button {
    padding: 0.875rem 1rem;
    min-height: 44px;
    min-width: 70px;
  }

  /* Tool request responsive */
  .tool-request {
    padding: 0.75rem;
  }

  .tool-request__parameters {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tool-request__param-label {
    min-width: auto;
    font-size: 0.8125rem;
  }

  .tool-request__actions {
    flex-direction: column;
  }

  .tool-request__button {
    width: 100%;
    padding: 0.75rem;
    min-height: 44px;
  }

  /* Multiple tool requests responsive */
  .multiple-tool-requests {
    padding: 0.75rem;
  }

  .multiple-tool-requests__actions {
    flex-direction: column;
  }

  .multiple-tool-requests__button {
    width: 100%;
    padding: 0.75rem;
    min-height: 44px;
  }

  .tool-request-item {
    padding: 0.625rem;
  }

  /* Markdown content adjustments */
  .chat-message__content h1 { font-size: 1.25rem; }
  .chat-message__content h2 { font-size: 1.125rem; }
  .chat-message__content h3 { font-size: 1rem; }

  .chat-message__content pre {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8125rem;
  }

  .chat-message__content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 480px) {
  /* Extra small devices */
  .chatbot__header {
    padding: 0.75rem;
  }

  .chatbot__header h1 {
    font-size: 1.125rem;
  }

  .chatbot__messages {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .chat-message {
    max-width: 100%;
    padding: 0.75rem;
  }

  .chat-message__content {
    font-size: 0.875rem;
  }

  .chatbot__input-form {
    padding: 0.5rem;
  }

  .chatbot__send-button,
  .chatbot__cancel-button {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
  }
}
/* Modal Overlay (shared for all modals) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}
/* Modal Content (shared for all modals) */
.modal-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  width: 90%;
  max-width: 400px;
  padding: 1.5rem;
  animation: slideIn 0.3s ease-out;
  position: relative;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}
/* Pricing Modal Styles */
.pricing-modal {
  max-width: 550px !important;
  max-height: 90vh;
  overflow-y: auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}
.pricing-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5568;
}
.pricing-plan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a5568;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
}
.pricing-period {
  font-size: 1.25rem;
  color: #718096;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #2d3748;
}
.feature-icon {
  color: #8A9A7A;
  font-weight: bold;
  font-size: 1.25rem;
}
.pricing-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.pricing-button-primary {
  background: #DDA448;
  color: white;
}
.pricing-button-primary:hover:not(:disabled) {
  background: #C98F3A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221, 164, 72, 0.3);
}
.pricing-button-secondary {
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #cbd5e0;
}
.pricing-button-secondary:hover:not(:disabled) {
  background: #edf2f7;
  border-color: #a0aec0;
}
.pricing-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pricing-footer {
  text-align: center;
  font-size: 0.8125rem;
  color: #718096;
  margin: 0;
}
.pricing-error {
  padding: 0.75rem;
  background: #fff5f5;
  border: 1px solid #fc8181;
  border-radius: 0.375rem;
  color: #c53030;
  font-size: 0.875rem;
  text-align: center;
}
.pricing-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.pricing-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f0f4ed;
  border: 2px solid #8A9A7A;
  border-radius: 2rem;
  font-weight: 600;
  color: #5a6650;
}
.status-icon {
  font-size: 1.25rem;
  color: #8A9A7A;
}
.pricing-active-message {
  text-align: center;
  color: #4a5568;
  font-size: 0.9375rem;
  margin: 0;
}
/* Login Modal Overlay */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Login Modal Container */
.login-modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  width: 90%;
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Header */
.login-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.login-modal__header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.login-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.login-modal__close:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Modal Form */
.login-modal__form {
  padding: 1.5rem;
}

/* Error Message */
.login-modal__error {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Form Field */
.login-modal__field {
  margin-bottom: 1.25rem;
}

.login-modal__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.login-modal__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.login-modal__input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-modal__input:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
}

.login-modal__input::placeholder {
  color: #9ca3af;
}

/* Form Actions */
.login-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.login-modal__button {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
}

.login-modal__button:active {
  transform: scale(0.98);
}

.login-modal__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.login-modal__button--cancel {
  background-color: #f3f4f6;
  color: #374151;
}

.login-modal__button--cancel:hover:not(:disabled) {
  background-color: #e5e7eb;
}

.login-modal__button--login {
  background-color: #3b82f6;
  color: white;
}

.login-modal__button--login:hover:not(:disabled) {
  background-color: #2563eb;
}

/* Google Sign-In Button Container */
.login-modal__google-button {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  min-height: 40px;
}

/* Divider */
.login-modal__divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #6b7280;
}

.login-modal__divider::before,
.login-modal__divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.login-modal__divider span {
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}