/* Chat Widget Container */
.troon-chat-wrapper .chat-toggle {
  position: fixed;
  background: unset;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border-radius: 100px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  background: #000;
}

.chat-toggle.active {
  transform: scale(0.9);
}

.chat-container {
  position: fixed;
  bottom: 20px;
  right: -410px;
  width: calc(100% - 40px);
  height: 600px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .chat-container {
    max-width: 400px;
  }
}

.chat-container.active {
  right: 20px;
}

/* Chat Header */
.chat-header {
  background-color: #000000;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.close-button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

/* Gradient Banner */
.chat-container a {
  text-decoration: none;
  display: block;
}

.gradient-banner {
  background: url("../images/graditentBG.svg");
  padding: 12px;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-banner h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

.banner-text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 12px 20px;
}

.banner-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.banner-arrow {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat Content Area */
.chat-area {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  /* background-color: #f8f9fa; */
}

.message {
  margin-bottom: 80px;
  max-width: 100%;
  clear: both;
}

.bot-container {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
  width: 100%;
  /* padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid rgba(2, 11, 15, 0.02);
  background: rgba(2, 11, 15, 0.02); */
  flex-direction: column;
  gap: 12px;
}

.bot-avatar {
  margin-right: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.bot-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bot-avatar svg {
  width: 20px;
  height: 20px;
}

.bot-message-wrapper {
  display: flex;
  flex-direction: column;
}

.bot-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.bot-message {
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid rgba(2, 11, 15, 0.02);
  background: rgba(2, 11, 15, 0.02);
  color: rgba(0, 0, 0, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.bot-message a {
  color: #1eb7fb;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}

.bot-message a:hover {
  color: #0c8bc7;
}

.user-message {
  border-radius: 16px;
  background: #020b0f;
  color: white;
  padding: 12px 16px;
  margin-left: auto;
  float: right;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

/* Input Area */
.input-area {
  padding: 16px;
  background-color: white;
  /* border-top: 1px solid #e9ecef; */
  display: flex;
  align-items: center;
  position: relative;
}

.message-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.message-input::-moz-placeholder {
  color: #adb5bd;
}

.message-input::placeholder {
  color: #adb5bd;
}

/* Typing indicator styles */
.typing-indicator .bot-message {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(2, 11, 15, 0.02);
  background: rgba(2, 11, 15, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 70px;
}

.typing-indicator .bot-message span {
  display: inline-block;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b1b1b1;
  margin: 0 3px;
  opacity: 0.8;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-indicator .bot-message span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator .bot-message span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator .bot-message span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
/* Suggested replies styling */
.pe-suggested-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pe-suggested-reply {
  background-color: rgba(2, 11, 15, 0.05);
  border: 1px solid rgba(2, 11, 15, 0.1);
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pe-suggested-reply:hover {
  background: rgba(30, 183, 251, 0.2);
}

/* Tooltip styles for suggested replies */
.pe-tooltip {
  position: absolute;
  display: none;
  background-color: #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  max-width: 250px;
  word-wrap: break-word;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: opacity 0.2s ease;
  margin-bottom: 10px;
  text-align: center;
}

.pe-tooltip:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Loading animation for send button */
.send-button.loading svg {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* Disabled input styling */
.message-input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* Disabled send button styling */
.send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Project Estimator css */
.pe-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pe-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}
@media (min-width: 992px) {
  .pe-container {
    margin: 0px 30px 0px;
  }
}

.pe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  border-bottom: 1px solid #dedede;
  background-color: #fff;
  width: 100%;
}
@media (min-width: 992px) {
  .pe-header {
    padding: 20px 20px;
  }
}

.pe-header .menu-toggle-btn {
  display: none;
}

@media (min-width: 768px) {
  #main-menu-container {
    display: block;
  }
}
@media (max-width: 767px) {
  #main-menu-container {
    position: absolute;
    border-bottom: 1px solid #dedede;
    right: 0;
    top: 100%;
    background: white;
    padding: 0px 16px 30px 16px;
    z-index: 99;
    text-align: center;
    display: none;
    width: 100%;
  }
  #main-menu-container.show {
    display: block;
  }
  .pe-header .menu-toggle-btn {
    display: block;
    border: none;
    background: transparent;
    position: absolute;
    right: 16px;
  }
  .pe-header .menu-toggle-btn svg {
    float: right;
  }
  .pe-header .menu-toggle-btn svg line {
    stroke: #000;
  }
}
.pe-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pe-logo {
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.pe-title h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  display: inline-block;
}

.pe-consultation-btn {
  color: white;
  padding: 12px 16px 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #020b0f;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.pe-main-container {
  display: flex;
  flex: 1;
  position: relative;
}

.pe-sidebar {
  width: 350px;
  border-right: 1px solid #dedede;
  padding: 20px;
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  min-height: calc(100vh - 9rem);
}
@media (min-width: 768px) {
  .pe-sidebar#peChatSidebar {
    display: block;
  }
}
@media (max-width: 767px) {
  .pe-sidebar {
    background: white;
    position: absolute;
    left: -80px;
    width: 0px;
    overflow: hidden;
    transition: all 0.6s;
    padding: 10px;
    top: 0;
    z-index: 9;
  }
  .pe-sidebar.show {
    left: 0;
    width: 100%;
    max-width: 320px;
    padding-top: 20px;
    overflow: auto;
    height: 100%;
    max-height: 100%;
  }
}

.pe-sidebar-heading {
  padding: 0px 0px 26px;
  color: #999;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

.pe-sidebar-item {
  padding: 16px;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
  display: none;
}

.pe-sidebar-item:first-child {
  display: block;
}

.pe-sidebar-item.loading {
  position: relative;
  display: block;
}

.pe-sidebar-item.loading .pe-sidebar-item-header {
  color: transparent;
  position: relative;
  overflow: hidden;
}

.pe-sidebar-item.loading .pe-sidebar-item-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(238, 238, 238, 0.6) 25%, rgba(238, 238, 238, 0.8) 50%, rgba(238, 238, 238, 0.6) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.pe-sidebar-item.loading .pe-sidebar-item-header .pe-toggle-icon {
  opacity: 0;
}

.pe-sidebar-item.loading .pe-sidebar-item-content {
  color: transparent;
  position: relative;
  overflow: hidden;
}

.pe-sidebar-item.loading .pe-sidebar-item-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(238, 238, 238, 0.6) 25%, rgba(238, 238, 238, 0.8) 50%, rgba(238, 238, 238, 0.6) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.pe-sidebar-item.show-all {
  display: block;
}

.pe-sidebar-item.active {
  border-radius: 12px;
  border: 1px solid rgba(2, 11, 15, 0.02);
  background: rgba(2, 11, 15, 0.02);
}

.pe-sidebar-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 767px) {
  .mobile-sub-header {
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #dedede;
  }
  .sidebar-toggle-btn {
    transition: all 1s;
    width: 30px;
    border: 1px solid #dedede;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
  }
  .sidebar-toggle-btn[aria-expanded=true] {
    left: 305px;
    transform: rotate(180deg);
  }
  .sidebar-toggle-btn svg {
    margin-left: 2px;
    width: 18px;
  }
}
.pe-sidebar-item-content {
  color: #3e3e3e;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 8px;
  padding-left: 20px;
}

.pe-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.pe-chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: calc(100vh - 20rem);
  max-height: calc(100vh - 24rem);
  overflow: auto;
}
@media (min-width: 992px) {
  .pe-chat-container {
    max-height: calc(100vh - 20rem);
  }
}

.pe-domain-tag {
  font-size: 12px;
  color: #777;
  text-align: right;
  margin-top: 20px;
}

.pe-message {
  display: flex;
  gap: 16px;
  max-width: 80%;
}

.pe-user-message {
  margin-left: auto;
}

.pe-message-avatar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}

.pe-user-message .pe-message-avatar {
  background-color: #7c4dff;
  display: none;
}

.pe-message-content {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.pe-message-content p {
  margin: 0;
}

.pe-ai-message .pe-message-content {
  /* background-color: #f0f0f0; */
  padding: 0px;
}

.pe-user-message .pe-message-content {
  border-radius: 16px;
  border: 1px solid rgba(2, 11, 15, 0.02);
  background: rgba(2, 11, 15, 0.02);
}

.pe-suggested-replies {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.pe-suggested-replies p {
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  display: block;
  width: 100%;
  padding: 16px 0px 12px;
}

.pe-suggested-reply {
  border-radius: 16px;
  border: 1px solid rgba(30, 183, 251, 0.08);
  background: rgba(30, 183, 251, 0.12);
  padding: 8px 16px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 12px;
}

.pe-suggested-reply:hover {
  background-color: #e5e5e5;
}

.pe-estimate-btn-container {
  padding-bottom: 10px;
  width: 100%;
}

.pe-estimate-btn {
  border-radius: 50px;
  background: linear-gradient(316deg, #ffa8bd -0.37%, #696eff 88.88%), #020b0f;
  color: white;
  padding: 12px 16px 12px 24px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pe-input-container {
  background-color: white;
  padding: 16px 20px;
  position: fixed;
  bottom: 0;
  min-width: calc(100% - 40rem);
}
@media (max-width: 767px) {
  .pe-input-container {
    padding: 16px 20px 56px 20px;
  }
}
@media (max-width: 767px) {
  .pe-input-container {
    width: 100%;
  }
}

/* Styling for disabled input */
.pe-input-field:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* Textarea styling with text wrapping */
.pe-input-field {
  flex: 1;
  padding: 12px 45px 12px 20px;
  border-radius: 48px;
  border: 1px solid #1EB7FB;
  font-size: 14px;
  outline: none;
  resize: none;
  height: auto;
  min-height: 40px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-y: auto;
  /* Enable scrollbar for better usability */
  scrollbar-width: thin;
  /* Firefox */
  -ms-overflow-style: auto;
  /* IE and Edge */
}

/* Style scrollbar for Chrome, Safari and Opera */
.pe-input-field::-webkit-scrollbar {
  width: 6px;
}

.pe-input-field::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.pe-input-field::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.pe-input-field::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* Adjust send button position */
.pe-send-btn {
  background-color: unset;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
}

/* Styling for disabled send button */
.pe-send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loading animation for send button */
.pe-send-btn.loading .pe-send-icon {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* Styling for hyperlinks in messages */
.pe-message-content a {
  color: #1EB7FB;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}

.pe-message-content a:hover {
  color: #0c8bc7;
}

/* Styling for error message */
.pe-error-message {
  background-color: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}

/* Styling for document content */
.pe-after-download {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 20px;
}

/* Styling for loading indicator */
.pe-loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

.pe-loading-spinner {
  display: inline-block;
  position: relative;
  color: #000;
  font-weight: 500;
  padding-left: 30px;
}

.pe-loading-spinner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.pe-send-btn {
  background-color: unset;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
}

.pe-send-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Project estimator typing indicator */
.pe-typing-indicator {
  display: flex;
  align-items: center;
}

.pe-typing-indicator .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 3px;
  background: #777;
  animation: pe-typing 1.5s infinite ease-in-out;
}

.pe-typing-indicator .dot:nth-child(1) {
  animation-delay: 0s;
}

.pe-typing-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.pe-typing-indicator .dot:nth-child(3) {
  animation-delay: 0.6s;
  margin-right: 0;
}

@keyframes pe-typing {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
}
/* Project Documentation Popup */
.pe-project-documentation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  z-index: 9999;
}

.pe-popup-content {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  background-color: white;
  border-radius: 16px;
  max-width: 320px;
  padding: 32px 24px 40px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .pe-popup-content {
    max-width: 400px;
  }
}

.pe-popup-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
}

.pe-form-group {
  margin-bottom: 24px;
}

.pe-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.pe-form-group .pe-phone-input #pe-phone {
  border-radius: 0 8px 8px 0 !important;
  border-left: none !important;
}

.pe-form-group input {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #c8c8c8 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  outline: none !important;
  margin-bottom: 0px !important;
}

.pe-form-group input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25) !important;
}

.pe-form-group input::placeholder {
  color: rgba(0, 0, 0, 0.25) !important;
}

.pe-phone-input {
  display: flex;
  align-items: center;
}

.pe-country-code {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 0px 11px 16px;
  border: 1px solid #c8c8c8;
  border-radius: 8px 0 0 8px;
  border-right: none;
  font-size: 14px;
  gap: 10px;
}

.pe-phone-input input {
  border-radius: 0 8px 8px 0;
}

.pe-generate-btn {
  border-radius: 50px;
  background: #020b0f;
  padding: 12px 30px;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

/* Country code dropdown styles */
.pe-country-code {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px 0 0 4px;
  padding: 11px 10px;
  cursor: pointer;
}

.pe-country-code span {
  margin-right: 5px;
}

.pe-country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
}

.pe-country-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pe-country-dropdown li {
  padding: 8px 12px;
  display: flex;
  transition: background-color 0.2s;
  font-size: 12px;
  font-weight: 600;
}

.pe-country-dropdown li:hover {
  background-color: #f5f5f5;
}

.pe-phone-input {
  display: flex;
  width: 100%;
}

.pe-phone-input input[type=tel] {
  border-radius: 0 4px 4px 0;
  flex: 1;
}

/* Verification Popup Styles */
.pe-popup .pe-popup-content p span {
  color: #000;
}

.pe-popup .pe-popup-content p {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.pe-popup .pe-popup-content {
  text-align: center !important;
}

.pe-popup svg {
  margin-bottom: 24px;
}

.pe-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.pe-popup-close:hover {
  color: #333;
}

.pe-verification-code-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  padding: 16px 56px;
}

.pe-verify-btn {
  border-radius: 50px;
  background: #020b0f;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 15px;
  min-width: 150px;
}

.pe-verify-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.pe-verify-btn:hover:not(:disabled) {
  background-color: #020b0f;
}

.pe-resend-text {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

.pe-resend-code {
  color: #1eb7fb;
  text-decoration: none;
  font-weight: bold;
}

.pe-resend-code:hover {
  text-decoration: underline;
}

.pe-close-btn {
  background-color: #020b0f;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.pe-close-btn:hover {
  background-color: #020b0f;
}

.pe-verification-error,
.pe-resend-success {
  margin: 15px 0;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}

.pe-verification-error {
  color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.pe-resend-success {
  color: #388e3c;
  background-color: rgba(56, 142, 60, 0.1);
  border: 1px solid rgba(56, 142, 60, 0.2);
}

.pe-verification-icon {
  text-align: center;
  margin-bottom: 20px;
}

.pe-verification-text {
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}

#verification-email {
  font-weight: bold;
}

.pe-verification-code-input {
  width: 32px;
  height: 43px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 24px;
  text-align: center;
  outline: none;
  background-color: #f9f9f9;
  font-weight: 600;
}

.pe-verification-code-input:focus {
  border-color: #696eff;
  background-color: white;
}

.download-document-btn {
  border-radius: 50px;
  background: #020b0f;
  padding: 12px 24px;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 20px 0;
}

.pe-verify-btn {
  margin-top: 10px;
}

.pe-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.pe-email-success {
  background-color: #e6f7e6;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  margin: 20px;
}

.pe-email-error {
  background-color: #fdecea;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
}

.pe-email-sending {
  background-color: #e3f2fd;
  color: #1976d2;
  border-left: 4px solid #1976d2;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.pe-email-sending:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 2px solid #1976d2;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive adjustments */
/* PDF Print Styles */
@media print {
  .pe-after-download {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .pe-after-download * {
    box-sizing: border-box;
  }
  .pe-after-download img {
    max-width: 100%;
    height: auto;
  }
  .pe-after-download table {
    width: 100%;
    border-collapse: collapse;
    page-break-inside: auto;
  }
  .pe-after-download tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  .pe-after-download h1,
  .pe-after-download h2 {
    page-break-after: avoid;
  }
  .pe-after-download p {
    orphans: 3;
    widows: 3;
  }
}
/* Fix for PDF generation - ensure content is visible */
.html2pdf__container {
  width: 100%;
  height: auto !important;
  overflow: visible !important;
}

.html2pdf__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.html2pdf__loading {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.beta-tag {
  border-radius: 4px;
  background: linear-gradient(316deg, #4dc9e6 -0.38%, #210cae 88.88%);
  color: white;
  padding: 0 8px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-left: 4px;
}

.beta-tag-position {
  position: relative;
  top: -8px;
}

a.new-project-btn {
  border-radius: 50px;
  border: 1px solid rgba(2, 11, 15, 0.15);
  background-color: transparent;
  padding: 8px 30px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  a.new-project-btn {
    padding: 12px 16px 12px 24px;
    min-width: 200px;
    text-align: center;
    justify-content: center;
  }
}

.new-project-btn:hover {
  background-color: #000;
  color: #fff;
}

.project-action-btn {
  display: flex;
  gap: 16px;
  align-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .project-action-btn {
    align-items: center;
    flex-direction: column;
  }
}

/* 
* Project Estimator Style
* After Download Section
* 
*/
/* Header section */
.estimate-header {
  display: none;
}

.section-heading-executive-1 {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: end;
  gap: 4px;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 47px;
}

.section-title-executive-1 {
  color: #000;
  font-family: Roboto Flex, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.dot-image-executive-1 {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 10px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.info {
  margin: 20px 0;
}

.info p {
  margin: 10px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table,
th,
td {
  border: 1px solid #ddd;
}

th,
td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #3498db;
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

#downloadBtn {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px;
  background-color: #2ecc71;
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

#downloadBtn:hover {
  background-color: #27ae60;
}

.section-title-executive-1 {
  color: #000;
  font-family: Roboto Flex, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.dot-container-executive-1 {
  display: flex;
  padding-bottom: 3px;
  align-items: center;
  gap: 8px;
  justify-content: start;
  width: 10px;
}

.dot-image-executive-1 {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 10px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.divider-container-executive-1 {
  width: 100%;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 8px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  line-height: 16px;
}

.divider-executive-1 {
  background-color: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.05);
  border-top-width: 1px;
  border-bottom-width: 1px;
  padding: 4px 70px;
}

.list-container-executive-1 {
  width: 100%;
  padding: 8px 16px;
}

.list-item-executive-1 {
  display: flex;
  width: 100%;
  gap: 8px;
  justify-content: start;
}

.bullet-point-executive-1 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
  width: 5px;
}

.bullet-image-executive-1 {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 5px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.list-text-executive-1 {
  color: rgba(0, 0, 0, 0.75);
}

.list-item-spaced-executive-1 {
  display: flex;
  margin-top: 8px;
  gap: 8px;
}

.estimate-footer {
  display: none;
}

/* Content section */
.estimate-content-executive-2 {
  margin-top: 47px;
  width: 100%;
  padding: 0 16px;
  flex-grow: 1;
}

.features-list-executive-2 {
  width: 100%;
  padding: 8px 16px 16px;
  list-style-type: none;
  margin: 0;
}

.feature-item-executive-2 {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.feature-item-executive-2:first-child {
  margin-top: 0;
}

.bullet-point-executive-2 {
  display: flex;
  padding-top: 5px;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 5px;
}

.bullet-icon-executive-2 {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 5px;
  align-self: stretch;
  margin: auto 0;
}

.feature-text-executive-2 {
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin: 0;
}

.estimate-content-stakeholder-1 {
  margin: 24px auto 0px;
}

.section-title-stakeholder-1 {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: flex-end;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.main-heading-stakeholder-1 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.main-heading-stakeholder-1 br {
  display: none;
}

.heading-dot-stakeholder-1 {
  width: 10px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 7px;
}

.challenges-section-stakeholder-1 {
  margin-top: 40px;
}

.section-heading-stakeholder-1 {
  width: 100%;
  padding-bottom: 8px;
  font-size: 12px;
  color: #000;
  font-weight: 700;
  line-height: 1;
}

.platform-section-heading-stakeholder-1 {
  margin-top: 24px;
}

.challenges-list-stakeholder-1,
.platform-features-list-stakeholder-1,
.target-audience-list-stakeholder-1 {
  width: 100%;
  padding: 8px 16px 16px;
  list-style: none;
}

.list-item-stakeholder-1 {
  color: rgba(0, 0, 0, 0.75);
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.bullet-point-stakeholder-1 {
  width: 5px;
  height: 5px;
  margin-top: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

.item-text-stakeholder-1 {
  font-size: 1.6rem;
}

.platform-subtitle-stakeholder-1 {
  width: 100%;
  padding-bottom: 4px;
  font-size: 10px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.estimate-document-stakeholder-2 {
  width: 612px;
  height: 792px;
  position: relative;
  background-color: #fff;
  font-family: Roboto, sans-serif;
  margin: 0 auto;
  padding: 24px 16px 8px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.document-content-stakeholder-2 {
  margin-top: 47px;
  flex-grow: 1;
}

.target-audience-stakeholder-2 {
  padding: 8px 16px 16px 32px;
}

.audience-list-stakeholder-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-item-stakeholder-2 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.bullet-point-stakeholder-2 {
  flex-shrink: 0;
}

.section-title-stakeholder-2 {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
  font-family: "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

.stakeholders-section-stakeholder-2 {
  margin: 0px 16px;
}

.section-description-stakeholder-2 {
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 4px;
  font-family: "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

.highlight-stakeholder-2 {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  min-width: 170px;
}

.value-cell-stakeholder-2 {
  color: rgba(0, 0, 0, 0.75);
}

.competitors-section-stakeholder-2 {
  padding: 0px 16px;
}

.competitor-subtitle-stakeholder-2 {
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 4px;
}

.competitor-list-stakeholder-2 {
  padding: 8px 16px 16px 16px;
}

.competitor-item-stakeholder-2 {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.competitor-number-stakeholder-2 {
  width: 16px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.competitor-content-stakeholder-2 {
  flex: 1;
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  line-height: 16px;
}

.competitor-name-stakeholder-2 {
  font-weight: 700;
  display: block;
}

/* Features section */
.section-header-features {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: flex-end;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.section-title-features {
  color: #000;
  font-family: "Roboto Flex", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.dot-decoration-features {
  display: flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 10px;
}

.dot-image-features {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 10px;
  align-self: stretch;
  margin: auto 0;
}

/* Features table */
.features-table-features {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.table-header-features {
  display: flex;
}

.header-cell-features {
  padding: 8px;
  flex: 1 0 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #1eb7fb;
}

.header-cell-features.complexity-header-features {
  text-align: center;
}

.table-row-features {
  display: flex;
}

.feature-cell-features {
  padding: 8px;
  flex: 1 0 0;
  border: 0.5px solid #eee;
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 700;
}

.complexity-cell-features {
  padding: 8px;
  flex: 1 0 0;
  border: 0.5px solid #eee;
  text-align: center;
  font-size: 1.4rem;
}

.complexity-cell-features.medium-features {
  background-color: #fff4e6;
}

.complexity-cell-features.high-features {
  background-color: #ffd5d8;
}

.complexity-cell-features.low-features {
  background-color: #eefff1;
}

/* Header styles */
.document-header-roadmap {
  display: none;
}

.title-container-roadmap {
  display: flex;
  flex: 1;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid rgba(0, 0, 0, 0.5);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
}

.company-logo-roadmap {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 72px;
  flex-shrink: 0;
}

.document-type-roadmap {
  color: #2e2e2e;
  font-size: 8px;
  line-height: 16px;
  font-family: "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

.document-date-roadmap {
  color: #2e2e2e;
  font-size: 8px;
  line-height: 16px;
}

.logo-roadmap {
  width: 72px;
  height: 24.173px;
}

/* Roadmap section styles */
.roadmap-header-roadmap {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: flex-end;
  gap: 4px;
}

.roadmap-title-roadmap {
  color: #000;
  font-family: "Roboto Flex", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0px;
}

.dot-decoration-roadmap {
  display: flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 10px;
}

/* Phases container styles */
.phase-row-roadmap {
  display: flex;
  border-bottom: 1px solid #eeeeee;
}

.phase-header-roadmap {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  padding: 8px;
}
@media (min-width: 768px) {
  .phase-header-roadmap {
    min-width: 160px;
  }
}

.phases-container-roadmap {
  max-width: 800px;
  margin: auto;
}

.phase-title-roadmap {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.phase-description-roadmap {
  padding: 8px 8px 10px 8px;
  color: rgba(0, 0, 0, 0.75);
  align-self: end;
}

/* Content section */
.estimate-content-technical {
  margin-top: 47px;
  width: 100%;
}
@media (min-width: 768px) {
  .estimate-content-technical {
    padding: 0 16px;
  }
}

/* Section header */
.section-header-technical {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: flex-end;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.section-title-technical {
  color: #000;
  font-family: "Roboto Flex", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.dot-decoration-technical {
  display: flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 10px;
}

.dot-image-technical {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 10px;
  align-self: stretch;
  margin: auto 0;
}

/* Specifications table */
.specs-table-technical {
  max-width: 800px;
  margin: auto auto 40px auto;
}

.table-column-technical {
  min-width: 240px;
  width: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.table-row-technical {
  border-color: #eeeeee;
  border-bottom-width: 1px;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom-style: solid;
}

.tech-stack-table-row-technical {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}

.label-cell-technical {
  padding: 8px;
  min-width: 145px;
}

.value-cell-technical {
  padding: 8px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  color: rgba(0, 0, 0, 0.75);
  font-size: 1.4rem;
}

.bold-white-text-technical {
  font-weight: 700;
  font-size: 1.3rem;
}

.tech-stack-bold-white-text-technical {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.4rem;
}

.bold-text-technical {
  font-weight: 700;
  font-size: 1.4rem;
}

/* Divider */
.section-divider-technical {
  width: 100%;
  font-size: 8px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  line-height: 16px;
}

/* Subsection title */
.subsection-title-technical {
  align-self: stretch;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  width: 100%;
  padding-bottom: 8px;
  gap: 8px;
  font-size: 12px;
  color: #000000;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
  margin-top: 56px;
}

/* Tech stack table */
.tech-stack-table-technical {
  margin-top: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .tech-stack-table-technical {
    padding: 0 8px;
  }
}

.table-header-technical {
  display: flex;
}

.header-cell-technical {
  background-color: #1eb7fb;
  padding: 8px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.centered-technical {
  text-align: center;
}

.bordered-cell-technical {
  font-size: 1.4rem;
  border-color: #eeeeee;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-left-width: 1px;
  padding: 8px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  border-bottom-style: solid;
  border-right-style: solid;
  border-left-style: solid;
}

.bordered-cell-technical:nth-child(2) {
  border-right: none;
  border-left: none;
}

.tech-stack-value-cell-technical {
  color: rgba(0, 0, 0, 0.75);
}

.estimate-content-investment-summary {
  margin-top: 47px;
  width: 100%;
}

.section-heading-investment-summary {
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  align-items: flex-end;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.main-title-investment-summary {
  color: #000;
  font-family: "Roboto Flex", Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.dot-decoration-investment-summary {
  display: flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 10px;
}

.dot-image-investment-summary {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 10px;
  align-self: stretch;
  margin: auto 0;
}

.divider-top-investment-summary {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  height: 1px;
}

.divider-bottom-investment-summary {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  height: 1px;
}

.divider-text-investment-summary {
  font-family: "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.25);
  margin: 20px 0px;
}

/* Table section */
.estimate-table-investment-summary {
  font-size: 1.6rem;
  margin: 0 auto;
  max-width: 800px;
  margin-top: 40px;
  overflow-x: auto;
}

.table-column-investment-summary {
  min-width: 240px;
  width: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.table-row-investment-summary {
  border-color: #eeeeee;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}

.table-cell-investment-summary {
  padding: 8px;
  color: rgba(0, 0, 0, 0.75);
}

.table-cell-investment-summary.label-investment-summary {
  min-width: 220px;
}

.table-cell-investment-summary.value-investment-summary {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.highlight-investment-summary {
  font-weight: 700;
  color: black;
}

.estimate-note-investment-summary {
  width: 100%;
  padding-bottom: 4px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 400;
  margin: 40px 0px 50px;
}

/* Main container */
.estimate-container-executive-1,
.estimate-container-executive-2,
.estimate-container-stakeholder-1,
.estimate-container-technical,
.estimate-container-investment-summary,
.estimate-document-roadmap,
.estimate-document-stakeholder-2,
.document-features {
  max-width: 920px;
  margin: 40px auto 0px auto;
  padding: 0;
}
@media (min-width: 768px) {
  .estimate-container-executive-1,
  .estimate-container-executive-2,
  .estimate-container-stakeholder-1,
  .estimate-container-technical,
  .estimate-container-investment-summary,
  .estimate-document-roadmap,
  .estimate-document-stakeholder-2,
  .document-features {
    margin: 64px auto 0px auto;
    padding: 0 2.4rem;
  }
}

/* Center content within the content area */
.estimate-content > * {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 800px;
}

.estimate-container-investment-summary {
  page-break-after: auto;
  -moz-column-break-after: auto;
       break-after: auto;
  padding-bottom: 0px;
}

.pe-after-download {
  padding: 0px !important;
  margin-top: 0px !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pe-input-container {
    min-width: calc(100% - 35rem);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pe-header .pe-title {
    font-size: 16px;
  }
  .pe-header .new-project-btn,
  .pe-header .pe-consultation-btn {
    padding: 10px 16px 10px 16px;
    gap: 8px;
  }
  .pe-header .project-action-btn {
    gap: 8px;
  }
}
#pe-verification-success h6 {
  font-size: 16px;
  margin-bottom: 30px;
}
#pe-verification-success h6 a {
  color: #1EB7FB;
  text-decoration: underline;
}
#pe-verification-success p {
  color: rgba(0, 0, 0, 0.9);
  opacity: 0.5;
}

/* Message Feedback Buttons */
.message-feedback {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 11px;
  padding-right: 10px;
}

.feedback-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.feedback-btn:hover {
  transform: scale(1.2);
}
.feedback-btn.active {
  border-radius: 10rem;
  background: #FAFAFA;
}
.feedback-btn.active svg path {
  fill: #000;
  fill-opacity: 1;
}
.feedback-btn.thumbs-down {
  top: 2px;
  position: relative;
}

.pe-after-download p {
  font-size: 1.6rem;
}
.pe-after-download h3 {
  font-size: 1.8rem;
  padding-bottom: 8px;
  margin-top: 24px;
}
.pe-after-download table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px auto;
}
.pe-after-download table th {
  background-color: #1eb7fb;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px;
  text-align: left;
}
.pe-after-download table td {
  padding: 8px;
  border: 0.5px solid #eee;
  font-size: 1.4rem;
}
.pe-after-download .phase-duration-roadmap {
  color: rgba(0, 0, 0, 0.75);
  font-size: 1.2rem;
}
.pe-after-download .project-overview-investment-summary {
  color: #000;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  html body .pe-after-download .container {
    --bs-gutter-x: 4rem;
  }
}
.book-consulation-action {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}/*# sourceMappingURL=chat-style.css.map */