/* ../../../../../tmp/tmp-1884238-MupdruddMfF0/chat/chat/public/scss/chat.bundle.css */
.chat-app {
  position: fixed;
  bottom: 24px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: 385px;
  z-index: 1030;
  padding: 0 1rem;
}
.chat-app ::-webkit-scrollbar {
  width: 2px;
}
.chat-app ::-webkit-scrollbar-track {
  background: var(--card-bg);
}
.chat-app ::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color);
  border-radius: 10px;
  max-height: 30px;
}
.chat-app ::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}
.chat-element {
  height: 582px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.chat-container {
  padding: 0;
  margin: 0;
  height: 100%;
}
.chat-element .btn-primary {
  background-color: var(--chat-btn-color, var(--primary-color)) !important;
  border-color: var(--chat-btn-color, var(--primary-color)) !important;
  color: var(--white) !important;
}
.chat-element .btn-primary:hover,
.chat-element .btn-primary:focus,
.chat-element .btn-primary:active {
  background-color: var(--chat-btn-color, var(--primary-color)) !important;
  border-color: var(--chat-btn-color, var(--primary-color)) !important;
  filter: brightness(0.9);
}
.chat-bubble {
  cursor: pointer;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: initial;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.chat-bubble svg {
  fill: var(--white);
}
.chat-bubble:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.chat-bubble .chat-message-icon {
  margin-right: var(--margin-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-bubble-icon-only {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.chat-bubble-icon-only .chat-bubble-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.chat-bubble-icon-only .chat-bubble-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}
.chat-cross-button {
  display: none;
}
.chat-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}
.chat-close-btn:hover {
  background: var(--control-bg);
  color: var(--text-color);
}
.chat-bubble-closed {
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  border-radius: 50%;
}
.chat-bubble-closed .cross-icon {
  width: 100%;
}
.chat-list .chat-list-header {
  padding: 12px 12px 0 12px;
  justify-content: space-between;
  display: flex;
}
.chat-list .chat-list-header .chat-list-icons {
  display: flex;
}
.chat-list .chat-list-header .chat-list-icons .user-settings {
  cursor: pointer;
  margin-right: 0px;
  margin-top: 1px;
}
.chat-list .chat-list-header .chat-list-icons .add-room {
  cursor: pointer;
  margin-right: 11px;
  margin-top: 1px;
}
.chat-list .chat-search {
  border-radius: 6px;
  font-size: 0.875rem;
  margin: 0 12px;
}
.chat-list .chat-search .search-icon {
  display: flex;
  align-items: center;
  position: absolute;
  padding-right: 10px;
  height: 100%;
  margin-left: 12px;
  z-index: 3;
}
.chat-list .chat-search .chat-search-box {
  width: 100%;
  border-radius: 6px;
  padding-left: 36px;
}
.chat-list .chat-search .chat-search-box:focus {
  box-shadow: none;
}
.chat-list .chat-rooms-container {
  height: 490.5px;
  overflow-y: scroll;
  padding: 12px;
}
.chat-list .chat-rooms-container .chat-room {
  display: flex;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
  border-radius: 8px;
}
.chat-list .chat-rooms-container .chat-room:hover {
  background: var(--bg-light-gray);
  border-left: 5px solid var(--bg-light-gray);
  border-right: 5px solid var(--bg-light-gray);
  margin: 0 -5px;
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info {
  margin-left: var(--margin-md);
  margin-right: auto;
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info .chat-name {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.chat-list .chat-rooms-container .chat-room .chat-date {
  color: var(--text-muted);
}
.chat-list .chat-rooms-container .chat-room .chat-latest {
  width: 4px;
  height: 4px;
  margin-left: 5px;
  background: var(--blue-500);
  border-radius: 50%;
}
.chat-header {
  display: flex;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid var(--border-color);
}
.chat-header .chat-back-button {
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--bg-color);
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chat-header .chat-back-button:hover {
  background: var(--control-bg);
}
.chat-header .chat-profile-info {
  margin-left: var(--margin-md);
  font-size: 0.875rem;
  margin-right: auto;
}
.chat-header .chat-profile-info .chat-profile-name {
  color: var(--text-color);
  font-weight: 600;
}
.chat-header .chat-profile-info .chat-profile-status {
  font-size: 0.75rem;
  visibility: hidden;
}
.chat-header .online-circle {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  margin-left: 3px;
  background: var(--green);
}
.chat-space {
  height: 100%;
}
.chat-space .chat-space-container {
  padding: 12px;
  overflow-wrap: break-word;
  height: 475.5px;
  overflow-y: scroll;
}
.chat-space .chat-space-container .chat-image {
  border-radius: 13px 13px 0px 13px;
}
.chat-space .chat-space-container .message-name {
  font-size: 0.75rem;
  font-weight: bold;
}
.chat-space .chat-space-container .sender-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5px;
}
.chat-space .chat-space-container .sender-message .message-bubble {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: 16px 16px 16px 4px;
  max-width: 78%;
  line-height: 1.4;
}
.chat-space .chat-space-container .recipient-message {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chat-space .chat-space-container .recipient-message .message-bubble {
  background: var(--control-bg);
  color: var(--text-color);
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: 16px 16px 4px 16px;
  max-width: 78%;
  line-height: 1.4;
}
.chat-space .chat-space-container .message-bubble.ai-draft {
  border: 1px dashed var(--orange-500);
  background: var(--orange-50);
  color: var(--text-color);
}
.chat-space .chat-space-container .ai-draft-badge {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--orange-700);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.chat-space .chat-space-container .message-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.chat-space .chat-space-container .date-line {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--gray-400);
  line-height: 0.1em;
  margin: 10px 0 20px;
}
.chat-space .chat-space-container .date-line span {
  background: var(--card-bg);
  padding: 0 8px;
  font-size: 0.875rem;
}
.chat-space .chat-space-actions {
  padding: 8px 12px 12px 12px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-color);
}
.chat-space .chat-space-actions .open-attach-items {
  cursor: pointer;
}
.chat-space .chat-space-actions .type-message {
  margin: 0 10px;
  border-radius: 100px;
  font-size: 0.875rem;
}
.chat-space .chat-space-actions .message-send-button {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.chat-space .chat-space-actions .message-send-button svg {
  fill: var(--white);
}
.chat-space .chat-space-actions .message-send-button:hover {
  transform: scale(1.05);
}
.chat-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-form .chat-form-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}
.chat-form .chat-form-header .chat-form-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-form .chat-form-header .chat-form-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}
.chat-form .chat-form-header .chat-form-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-form .chat-form-header .chat-form-header-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
}
.chat-form .chat-form-container {
  padding: 20px;
  flex: 1 1 0;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container .chat-form-intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.chat-form .chat-form-container .chat-modern-input {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--control-bg);
}
.chat-form .chat-form-container .chat-modern-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 227, 30, 36), 0.1);
  background: var(--card-bg);
}
.chat-form .chat-form-container .chat-modern-input::-moz-placeholder {
  color: var(--text-light);
}
.chat-form .chat-form-container .chat-modern-input::placeholder {
  color: var(--text-light);
}
.chat-form .chat-form-container textarea.chat-modern-input {
  resize: none;
  min-height: 80px;
  flex: 1;
}
.chat-form .chat-form-container .form-group {
  margin-bottom: 14px;
}
.chat-form .chat-form-container .form-group-grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container button {
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  transition: all 0.2s ease;
}
.chat-form .chat-form-container button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chat-welcome {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-welcome .chat-welcome-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 28px 24px;
  text-align: center;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo {
  margin-bottom: 20px;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo img.chat-brand-logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo .chat-brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo .chat-brand-icon svg {
  fill: var(--white);
}
.chat-welcome .chat-welcome-hero .chat-welcome-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.3;
}
.chat-welcome .chat-welcome-hero .chat-welcome-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
}
.chat-welcome .chat-welcome-actions {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
  border-radius: 0 0 16px 16px;
}
.chat-welcome .chat-welcome-actions button {
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  transition: all 0.2s ease;
}
.chat-welcome .chat-welcome-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chat-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.chat-status-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  flex-shrink: 0;
}
.chat-status-badge.online .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb, 40, 167, 69), 0.2);
}
.chat-status-badge.offline .status-dot {
  background: var(--orange);
}
.chat-status-badge.sm {
  font-size: 0.75rem;
  gap: 5px;
}
.chat-status-badge.sm .status-dot {
  width: 6px;
  height: 6px;
}
.chat-welcome-footer-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
}
.chat-welcome-footer-link:hover {
  color: var(--text-color);
  text-decoration: underline;
}
.chat-form-footer {
  padding: 8px 20px 12px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .chat-app {
    max-width: 100%;
    bottom: 1rem;
  }
  .chat-list .chat-list-header .chat-list-icons {
    margin-right: var(--margin-xl);
  }
}
.chat-navbar-icon {
  cursor: pointer;
}
.chat-navbar-icon .badge {
  background: var(--red-avatar-color);
  color: var(--bg-color);
  position: relative;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid var(--red-avatar-color);
}
/*# sourceMappingURL=chat.bundle.6RK7N5R7.css.map */
