/* src/styles.scss */
body {
  font-family: "Noto Sans", sans-serif !important;
  font-size: 14px !important;
}
body {
  font-size: 16px;
}
.font-size1 h1 {
  font-size: 28px !important;
}
.font-size1 h2 {
  font-size: 26px !important;
}
.font-size1 h3 {
  font-size: 24px !important;
}
.font-size1 h4 {
  font-size: 22px !important;
}
.font-size1 h5 {
  font-size: 20px !important;
}
.font-size1 h6,
.font-size1 ul li,
.font-size1 ul li a,
.font-size1 p {
  font-size: 18px !important;
}
.font-size2 h1 {
  font-size: 30px !important;
}
.font-size2 h2 {
  font-size: 28px !important;
}
.font-size2 h3 {
  font-size: 26px !important;
}
.font-size2 h4 {
  font-size: 24px !important;
}
.font-size2 h5 {
  font-size: 22px !important;
}
.font-size2 h6,
.font-size2 ul li,
.font-size2 ul li a,
.font-size2 p {
  font-size: 20px !important;
}
.font-size3 h1 {
  font-size: 32px !important;
}
.font-size3 h2 {
  font-size: 30px !important;
}
.font-size3 h3 {
  font-size: 28px !important;
}
.font-size3 h4 {
  font-size: 26px !important;
}
.font-size3 h5 {
  font-size: 24px !important;
}
.font-size3 h6,
.font-size3 ul li,
.font-size3 ul li a,
.font-size3 p {
  font-size: 22px !important;
}
.font-size-1 h1 {
  font-size: 24px !important;
}
.font-size-1 h2 {
  font-size: 22px !important;
}
.font-size-1 h3 {
  font-size: 20px !important;
}
.font-size-1 h4 {
  font-size: 18px !important;
}
.font-size-1 h5 {
  font-size: 16px !important;
}
.font-size-1 h6,
.font-size-1 ul li,
.font-size-1 ul li a,
.font-size-1 p {
  font-size: 14px !important;
}
.font-size-2 h1 {
  font-size: 22px !important;
}
.font-size-2 h2 {
  font-size: 20px !important;
}
.font-size-2 h3 {
  font-size: 18px !important;
}
.font-size-2 h4 {
  font-size: 16px !important;
}
.font-size-2 h5 {
  font-size: 14px !important;
}
.font-size-2 h6,
.font-size-2 ul li,
.font-size-2 ul li a,
.font-size-2 p {
  font-size: 12px !important;
}
.font-size-3 h1 {
  font-size: 20px !important;
}
.font-size-3 h2 {
  font-size: 18px !important;
}
.font-size-3 h3 {
  font-size: 16px !important;
}
.font-size-3 h4 {
  font-size: 14px !important;
}
.font-size-3 h5 {
  font-size: 12px !important;
}
.font-size-3 h6,
.font-size-3 ul li,
.font-size-3 ul li a,
.font-size-3 p {
  font-size: 10px !important;
}
#success-snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #218838;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 12px;
  position: fixed;
  z-index: 1051;
  right: 4%;
  top: 15%;
  font-size: 16px;
}
#error-snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #c82333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 12px;
  position: fixed;
  z-index: 1051;
  right: 4%;
  top: 15%;
  font-size: 16px;
}
.error-close {
  position: absolute;
  right: -7px;
  top: -8px;
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0px 0px 2px #888;
  padding: 0.3em 0.4em;
  background: #fff;
  color: red;
}
#success-snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#error-snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
body.high-contrast {
  filter: contrast(150%);
  background-color: #565656 !important;
  border-color: #d4ff00 !important;
}
body.grayscale {
  filter: grayscale(100%);
}
.cursor-pointer {
  cursor: pointer;
}
chat-container {
  width: 400px;
  height: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-header {
  padding: 7px;
  padding-left: 160px;
  background: #075e54;
  color: white;
  height: 60px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: #f0f2f5;
}
.message-wrapper {
  display: flex;
  flex-direction: column;
  margin: 4px 0;
  width: 100%;
}
.message {
  margin: 2px 0;
  padding: 12px 18px;
  border-radius: 12px;
  max-width: 70%;
  word-wrap: break-word;
  position: relative;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.received {
  background: #ffffff;
  align-self: flex-start;
  color: #000000;
  border-bottom-left-radius: 4px;
}
.sent {
  background: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
  color: #000000;
  border-bottom-right-radius: 4px;
}
.timestamp {
  font-size: 11px;
  color: #667781;
  margin-top: 4px;
  display: inline-block;
}
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding: 4px 0;
}
.quick-reply-button {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 14px;
  color: #075e54;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  width: 100%;
  text-align: left;
}
.quick-reply-button:hover {
  background: #f5f5f5;
  border-color: #075e54;
}
.chat-input {
  padding: 15px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
  background: white;
}
.chat-input input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}
.chat-input button {
  padding: 8px 20px;
  background: #075e54;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}
.chat-input button:hover {
  background: #054d44;
}
.date-separator {
  text-align: center;
  margin: 20px 0;
  position: relative;
}
.date-separator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  z-index: 1;
}
.date-separator span {
  background: #f0f2f5;
  padding: 0 10px;
  color: #667781;
  font-size: 12px;
  position: relative;
  z-index: 2;
}
.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.toggle-container {
  margin-right: 2%;
  margin-top: 640px;
}
.toggle-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  color: rgb(136, 46, 46);
  border: none;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.toggle-button:hover {
  transform: scale(1.1);
}
.toggle-button:active {
  transform: scale(0.95);
}
.categories-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px;
}
.category-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.category-item:hover {
  background: #f5f5f5;
  border-color: #075e54;
}
.category-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.category-name {
  font-size: 14px;
  text-align: center;
  color: #075e54;
  font-weight: 500;
}
.back-button {
  background: none;
  border: none;
  color: #075e54;
  font-size: 14px;
  padding: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-button:hover {
  background: #e9e9e9;
  border-radius: 5px;
}
.minimize-button {
  background: none;
  border: none;
  color: #075e54;
  font-size: 14px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.minimize-button:hover {
  background: #e9e9e9;
  border-radius: 5px;
}
.chat-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px);
  overflow: hidden;
}
.chat-header-nav {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.chat-header-title {
  margin-left: 30px;
  padding: 2px 12px;
  font-weight: 700;
  color: #075e54;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f0f2f5;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .chat-container {
    width: 90%;
    height: 80vh;
    bottom: 20px;
    right: 20px;
    animation: slideIn 0.3s ease;
  }
  .chat-header {
    padding-left: 20px;
    justify-content: space-between;
  }
  .chat-header .minimize-button {
    display: block;
  }
  .chat-input {
    padding: 10px;
  }
  .chat-input input {
    padding: 10px 15px;
  }
  .chat-input button {
    padding: 6px 15px;
  }
  .categories-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .toggle-button {
    display: block;
  }
}
@media (max-width: 480px) {
  .chat-container {
    width: 100%;
    height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
  .chat-header {
    border-radius: 0;
  }
  .chat-header .minimize-button {
    display: block;
  }
  .chat-input {
    padding: 8px;
  }
  .chat-input input {
    padding: 8px 12px;
  }
  .chat-input button {
    padding: 6px 12px;
  }
  .categories-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .quick-reply-button {
    font-size: 13px;
    padding: 8px 12px;
  }
  .toggle-button {
    display: block;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
