 
body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: auto;              
  scrollbar-width: none;       
  -ms-overflow-style: none;    
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
}

/* Chrome, Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* MEN KOREKSYON AN */
body {
  display: flex;
  justify-content: center;
  align-items: stretch;
}


@font-face {
  font-family: 'MuseoSansRounded';
  src: url('./fonts/MuseoSansRounded900.otf') format('opentype');
  font-weight: 900;
}

.headline {
  font-family: 'MuseoSansRounded', Arial, sans-serif;
  font-weight: 900;
  color: #ffffff;
}

@font-face {
  font-family: 'MuseoSansRounded-700';
  src: url('./fonts/MuseoSansRounded700.otf') format('opentype');
}

.subheadline {
  font-family: 'MuseoSansRounded-700', Arial, sans-serif;
}

@font-face {
  font-family: 'MuseoSansRounded-500';
  src: url('./fonts/MuseoSansRounded500.otf') format('opentype');
}

.subheadlines {
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
}

@font-face {
  font-family: 'MuseoSansRounded-300';
  src: url('./fonts/MuseoSansRounded300.otf') format('opentype');
}

.subheadlinese {
  font-family: 'MuseoSansRounded-300', Arial, sans-serif;
}

@font-face {
  font-family: 'BwModelicaSS01-Bold';
  src: url('./fonts/BwModelicaSS01-Bold.otf') format('opentype');
}

.subheadlinesebw {
  font-family: 'BwModelicaSS01-Bold', Arial, sans-serif;
}

@font-face {
  font-family: 'BwModelicaSS01-Medium';
  src: url('./fonts/BwModelicaSS01-Medium.otf') format('opentype');
}

.subheadlinesebwm {
  font-family: 'BwModelicaSS01-Medium', Arial, sans-serif;
}


@font-face {
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d';
  src: url('./fonts/GT-Walsheim-Regular-Trial-BF651b7fc71a47d.otf') format('opentype');
}

.subheadlinesebwmK {
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}


@font-face {
  font-family: 'GT-Walsheim-Bold-Trial-BF651b7fc737c57';
  src: url('./fonts/GT-Walsheim-Bold-Trial-BF651b7fc737c57.otf') format('opentype');
}

.subheadlinesebwmKK {
  font-family: 'GT-Walsheim-Bold-Trial-BF651b7fc737c57', Arial, sans-serif;
}


@font-face {
  font-family: 'Goo1-Regular';
  src: url('./fonts/Goo1-Regular.ttf') format('opentype');
}

.goo1 {
  font-family: 'Goo1-Regular', Arial, sans-serif;
}



@font-face {
  font-family: 'Goo2-Regular';
  src: url('./fonts/Goo2-Regular.ttf') format('opentype');
}

.goo2 {
  font-family: 'Goo2-Regular', Arial, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 999;
  font-family: Arial, sans-serif;
}


.sidebar-toggle-btn {
  background: #fff;
  border-radius: 50%;
  width: 45px; 
  height: 45px;
  padding: 0;
  cursor: pointer;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sidebar-toggle-btn:hover {
  background-color: #f9f9f9;
}


.header-spacer {
  font-size: 16px; 
  font-weight: 500; 
  color: black;
}


.action-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50px; 
  padding: 5px 10px; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Espas ant 3 bouton yo */
}


.card-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  color: #333;
  transition: background 0.2s ease;
}

.card-icon-btn:hover {
  background-color: #f0f0f0; 
  color: #000;
}


#headerSettingsBtn {
  display: none; 
}

.floterpop-up {
  position: fixed;
  bottom: 65px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); 
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding-bottom: 10px;
  border: 1px solid #ccc;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.floterpop-up.active {
  display: flex;
}


.popup-header {
  padding: 20px 18px 8px;
}


.user-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  border: 1px solid #ddd;
}

.user-card:hover {
  background: #ffff;
}

.user-card:hover .user-name,
.user-card:hover .user-email,
.user-card:hover .copy-icon {
  color: #222 !important;
}


.user-name,
.user-email {
  cursor: pointer;
}

.user-name {
  font-weight: 600;
  font-size: 12px;
  color: #222;
}

.popup-user .user-name,
.popup-user .user-email {
  max-width: 200px; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-icon {
  margin-left: 6px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.copy-icon:hover {
  transform: scale(1.2);
  color: #684fff;
}

.copy-icon.copied {
  color: #28a745;
  transform: scale(1.3);
}

.user-email-wrap {
  display: flex;
  align-items: center;
  gap: 6px; 
  margin-bottom: 8px;
}

.user-email {
  font-size: 12px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




.popup-user {
  display: flex;      
  align-items: center; 
  gap: 12px;          
}


.header-avatar {
  width: 45px;        
  height: 45px;
  border-radius: 50%;  
  object-fit: cover;  
  display: block;
  border: 1px solid #eee; 
}


.user-text-info {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  overflow: hidden; 
  flex: 1; 
}


.user-email-wrap {
  margin-bottom: 0;
}


.popup-user .user-name,
.popup-user .user-email {
  max-width: 100%; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.popup-section {
  border-top: 1px solid #eee;
  padding: 1px 18px;
  display: flex;
  flex-direction: column;
}

.popup-item {
  font-size: 13px;
  display: flex;
  align-items: center; 
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease, padding-left 0.15s ease;
  border-radius: 8px;
  padding: 12px 8px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
}

.popup-item:hover {
  background: #f5f7ff;
}


.popup-item svg {
  margin-right: 9px; /* Ou ka chanje valè sa a jan ou vle */
}


.popup-item span {
  margin-left: auto; /* Sa a se kle a */
  padding-left: 7px; /* Sa a se jis pou asire gen yon ti espas */
}


.promo {
  background: linear-gradient(to right, #f8f8ff, #eef3ff);
  border-radius: 12px;
  margin: 10px 18px;
  padding: 12px;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.signout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  width: 100%;
  max-width: 255px;
  margin: 14px auto 11px;
  padding: 12px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.signout-btn svg {
  color: #444;
}

.signout-btn:hover {
  background: #f6f7fb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}


.popup-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12.5px;
  padding: 14px 0 16px;
  color: #666;
  background-color: transparent;
}

.popup-footer a {
  text-decoration: none;
  color: #666;
  transition: color 0.2s ease;
}

.popup-footer a:hover {
  color: #0078ff;
  text-decoration: underline;
}

.user-email a {
  color: inherit;
  text-decoration: none;
}
.user-email a:hover {
  text-decoration: underline;
  color: #684fff;
}




.theme-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
}

.theme-modal.active {
  display: flex;
}


.theme-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
  margin-bottom: 22px;
  height: 33px;
}


.theme-title {
  position: static;
  transform: none;
  font-size: 14px;
  white-space: nowrap;
}


.back-icon {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}



.theme-options {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.theme-option {
  flex: 1;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 14px;
  color: #333;
  margin-bottom: 100px;
}

.theme-option i {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.theme-option:hover {
  background: #eef3ff;
  transform: scale(1.05);
}

.theme-option.selected {
  background: #000;
  color: #fff;
}


.language-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
}

.language-modal.active {
  display: flex;
}

.language-options.vertical-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px; 
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 10px;
}


.language-options::-webkit-scrollbar {
  width: 6px;
}

.language-options::-webkit-scrollbar-track {
  background: transparent;
}

.language-options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}


.language-option {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  white-space: nowrap;
}

.language-option:hover {
  background: #eef3ff;
}

.language-option.selected {
  background: #000;
  color: #fff;
}


.language-options::-webkit-scrollbar {
  height: 6px;
}

.language-options::-webkit-scrollbar-track {
  background: transparent;
}

.language-options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}



.download-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
}

.download-modal.active {
  display: flex;
}

.download-content {
  text-align: center;
  margin-bottom: 100px;
}

.download-text {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 14px;
  text-align: left;
}

.qr-wrapper {
  position: relative;
  display: inline-block;
}

.qr-image {
  width: 160px;
  height: 160px;
  border-radius: 12px;
}

.qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-image: url('your-logo.png');
  background-size: cover;
  border-radius: 50%;
}

.support-modal {
  position: fixed;
  bottom: 70px;
  left: 20px;
  display: none;
  z-index: 999;
  animation: slideUp 0.4s ease forwards;
}

.support-box {
  width: 360px;
  height: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Arial, sans-serif;
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 16px;
  font-size: 17px;
  color: #444;
}

.support-title {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
}


.support-body {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-body h3 {
  font-weight: 600;
  font-size: 20px;
  color: #222;
  line-height: 1.5;
}

.support-input {
  position: relative;       
  display: flex;
  align-items: flex-start;
  margin: 0 16px 6px;
  background: #fff;
  border-radius: 16px;
  padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
  border: 1px solid #ddd;
}

.support-input textarea {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 40px 8px 8px; /* kite espas pou bouton an */
  font-size: 14px;
  min-height: 34px;
  max-height: 120px;
  resize: none;
  overflow-y: auto;
  line-height: 1.4;
}

.support-input button {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #684fff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



.support-footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.about-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
  padding-bottom:50px;
}

.about-modal.active {
  display: flex;
}

.theme-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
  margin-bottom: 22px;
  height: 33px;
}

.theme-title {
  position: static;
  transform: none;
  font-size: 14px;
  white-space: nowrap;
}

.back-icon {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  font-family: 'MuseoSansRounded-700', Arial, sans-serif;
}

.about-option:hover {
  background: #eef3ff;
}

.about-option.toggle {
  justify-content: space-between;
}

.toggle-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.blue-check {
  color: #684fff;
}

.gray-x {
  color: #684fff;
}


.about-icon {
  font-size: 14px;
  color: #000;
  transition: transform 0.2s ease;
}

.about-option:hover .about-icon {
  transform: scale(1.1);
}


.connectors-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
}

.connectors-modal.active {
  display: flex;
}

.connector-option {
  background: #fff;
  border: 1px solid #ddd;
  transition: box-shadow 0.2s ease;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.connector-option:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.connector-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 65%;
}

.connector-info i {
  font-size: 18px;
  color: #0078d4;
  margin-top: 2px;
}

.connector-info strong {
  font-size: 13px;
  color: #222;
  display: block;
  margin-bottom: 4px;
}

.connector-info p {
  font-size: 12px;
  color: #555;
  line-height: 1.3;
}

.connect-btn {
  background: #fff;
  color: #222;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.connect-btn:hover {
  background: #f6f6f6;
  border-color: #bbb;
}


.voice-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
  padding-bottom: 40px;
}

.voice-modal.active {
  display: flex;
}

.voice-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.voice-option {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #222;
  cursor: pointer;
  transition: all 0.2s ease;
}

.voice-option:hover {
  background: #eaeaea;
}

.voice-option.selected {
  background: #000;
  color: #fff;
}

.voice-footer {
  margin-top: 16px;
  font-size: 11px;
  color: #666;
  text-align: center;
}


.account-modal {
  position: fixed;
  bottom: 60px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
  padding-bottom: 40px;
}


.account-modal.active {
  display: flex;
}


.account-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
  margin-bottom: 22px;
  height: 33px;
}

.account-title {
  position: static;
  transform: none;
  font-size: 14px;
  white-space: nowrap;
}

.back-icon {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}


.account-options {
  display: flex;
  flex-direction: column;
}

.account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 13px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease;
  font-weight: 500;
}

.account-item:hover {
  background: #f5f5f5;
}

.account-item span.value {
  font-weight: 500;
  color: #555;
}


.account-separator {
  border-top: 1px solid #e6e6e6;
  margin: 12px 0;
}


.delete-section {
  margin-top: 5px;
  margin-left: 11px;
}

.delete-section p {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 3px;
}

.delete-account {
  color: #d93025;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.delete-accountt {
  color: #222;
  font-weight: 600;
  font-size: 13.5px;
  margin-left: 11px;
}

.delete-account:hover {
  color: #b02119;
  text-decoration: underline;
  text-decoration: none;
}

.account-item .left-section {
  display: flex;
  align-items: center;
  gap: 9px;   
}

.account-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0; 
}

.delete-section .center-section {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 9px;   
}




.name-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
}

.name-modal.active {
  display: flex;
}


.name-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
  margin-bottom: 22px;
  height: 33px;
}

.name-title {
  position: static;
  transform: none;
  font-size: 14px;
  white-space: nowrap;
}


.name-form {
  display: flex;
  flex-direction: column;
}

.name-label {
  font-size: 13.5px;
  color: #333;
  margin-bottom: 6px;
}

.name-input {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.name-input:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(104, 79, 255, 0.15);
}

.name-input {
  width: 240px; 
  max-width: 250px;
  min-width: 250px;
  height: 60px;
}


.name-info {
  font-size: 12.5px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}


.name-separator {
  border-top: 1px solid #e6e6e6;
  margin: 18px 0 14px;
}


.name-update-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 40px;
}

.name-update-btn:hover {
  background: #000;
  transform: translateY(-1px);
}




.update-logo-modal {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeUp 0.50s ease;
  z-index: 2147483647 !important;
  padding: 18px;
  padding-bottom: 60px;
}

.update-logo-modal.active {
  display: flex;
}

.update-logo-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  color: #222;
  margin-bottom: 22px;
  height: 33px;
}

.update-logo-title {
  position: static;
  transform: none;
  font-size: 14px;
  white-space: nowrap;
}


.logo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px auto;
}


.logo-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
}

.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.logo-preview img.loaded {
  opacity: 1;
}


.camera-icon-wrapper {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  border: 1px solid #ddd;
  opacity: 1;
}

.logo-wrapper:hover .camera-icon-wrapper {
  opacity: 1;
}

.camera-icon {
  color: white;
  font-size: 14px;
}


.logo-preview.loading::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-top: 3px solid #684fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  z-index: 4;
}

@keyframes spin {
  to {
    transform: translate(50%, 50%) rotate(360deg);
  }
}


.update-logo-info {
  font-size: 12.5px;
  color: #666;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}


.separator-line {
  border-top: 1px solid #e6e6e6;
  margin: 18px 0 14px;
}


.upload-btn,
.update-logo-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 10px;
}

.upload-btn:hover,
.update-logo-btn:hover {
  transform: translateY(-1px);
}


.upload-checkmark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.logo-wrapper.uploaded .upload-checkmark {
  opacity: 1;
  transform: scale(1);
}


@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

.logo-wrapper.shake {
  animation: shake 0.4s ease;
}

.business_vizyel {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: margin 0.3s ease;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ccc; /* koulè dot pa aktive */
  animation: pulseColor 1s infinite;
}


.pulse-dot:nth-child(1) {
  animation-delay: 0s;
  background-color: #000; /* dot premye fonse */
}
.pulse-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.pulse-dot:nth-child(3) {
  animation-delay: 0.4s;
}


@keyframes pulseColor {
  0%, 80%, 100% { background-color: #ccc; }
  40% { background-color: #000; }
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.hidden {
    display: none;
}


.popup-card {
 display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 99999999;
  background-color: white;
  border-radius: 16px;
  border: 1px solid #aaa;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  opacity: 0;
  animation: popupFadeInCentered 0.5s ease forwards;
}

.popup-background {
   display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background: transparent;
  opacity: 0.80;
  z-index: 99998;
  animation: fadeBg 1s ease forwards;
}

.popup-title {
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  margin-bottom: 10px;
}

.popup-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 30px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1em;
  border-radius: 9999px;
  cursor: pointer;
  margin-bottom: 15px;
  border: 1px solid transparent;
  box-sizing: border-box;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  font-weight: bold;
}

.btn-primary {
  background-color: #000;
  color: white;
  border-color: transparent;
}

.btn-secondary {
  background-color: white;
  color: black;
  border-color: #aaa;
}

.popup-footer a {
  color: #666;
  font-size: 0.9em;
  text-decoration: none;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.popup-footer a:hover {
  text-decoration: underline;
}

.login-modal-overlay {
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: transparent;
}

.login-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #aaa;
  transform: scale(0.9);
  opacity: 0;
  animation: popupFadeInSimple 0.5s ease forwards;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #aaa;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover { color: #000; }

.modal-header { text-align: center; margin-bottom: 30px; }

.modal-header h1 {
  font-size: 26px;
  font-weight: bold;
  color: #101828;
  margin-bottom: 10px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.modal-header p {
  font-size: 14px;
  color: #667085;
  line-height: 1.4;
  padding: 0 15px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.social-login-options { display: flex; flex-direction: column; gap: 12px; }

.social-btn {
  width: 100%;
  padding: 14px;
  text-align: center;
  border: 1px solid #aaa;
  border-radius: 8px;
  background-color: white;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.social-btn:hover { background-color: #f9fafb; }

.social-btn i, .social-btn svg {
  margin-right: 12px;
  font-size: 18px;
  color: #101828;
}

.microsoft-btn i { color: #00A4EF; }

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-bottom: 1px solid #EAECF0;
  z-index: 1;
}

.divider-text {
  background-color: white;
  padding: 0 10px;
  font-size: 12px;
  color: #667085;
  z-index: 2;
  position: relative;
  font-weight: 500;
}

.email-login-form { display: flex; flex-direction: column; gap: 16px; }

.email-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  font-size: 16px;
  color: #101828;
  box-sizing: border-box;
}

.email-input::placeholder { color: #667085; }

.email-input:focus {
  border-color: #4C9AFF;
  outline: none;
  box-shadow: 0 0 0 4px rgba(76, 154, 255, 0.1);
}

.continue-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background-color: #101828;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.continue-btn:hover { background-color: #344054; }

@keyframes popupFadeInCentered {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes popupFadeInSimple {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeBg {
  from { opacity: 0; }
  to { opacity: 0.8; }
}


.conversation-section {
  margin-top: 1rem;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  max-height: 460px; 
  overflow: hidden;
  flex-shrink: 0;
  margin-right: -0.75rem;
}

.conversation-header {
  margin-bottom: 0.5rem;
}

.conversation-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  padding-left: 20px;
}

.conversation-subtitle {
  font-size: 0.70rem;
  color: #888;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.conversation-list {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 0; 
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.conversation-list::-webkit-scrollbar {
  width: 6px;
}

.conversation-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.conversation-item {
  display: block;
  position: relative; 
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
  background-color: transparent;
  border-radius: 15px;
  font-size: 0.97rem;
  color: #333;
  font-weight: 500;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  margin-bottom: 6px;
}

.conversation-item:hover,
.conversation-item.active {
  background-color: #efefef;
  text-decoration: none;
}

.conversation-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 2.5rem; 
}


.conversation-item[data-is-pinned="1"] .conversation-text {
  padding-right: 4.25rem; 
}

.conversation-more-btn {
  position: absolute;
  right: 0.75rem; /* (12px) */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.conversation-more-btn svg {
  width: 28px; 
  height: 28px;
  color: #555;
}


.conversation-pin-icon {
  display: none;
  position: absolute; 
  top: 50%; /* AJOUTE SA */
  transform: translateY(-50%); 
  right: 46px; 
  
  color: #555;
}


.conversation-pin-icon svg {
  width: 18px;
  height: 18px;
}

.conversation-item[data-is-pinned="1"] .conversation-pin-icon {
  display: block;
}

.conversation-item.active .conversation-more-btn,
.conversation-item:hover .conversation-more-btn {
  visibility: visible;
  opacity: 1;
}

.conversation-more-btn:hover {
  background-color: #e0e0e0;
}

.conversation-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conversation-split-list li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px 0;
}



.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; 
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  padding-top: 10vh;
  z-index: 21474836474 !important;;
}

.search-modal-content {
  width: 90%;
  max-width: 600px; /* Lajè modal la */
  background-color: #fff;
  border-radius: 16px; /* Kwen awondi jan imaj la montre l la */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Pou kwen awondi yo ka parèt */
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  border: 1px solid #ccc;
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: #333;
  padding: 8px 4px;
}

.search-input::placeholder {
  color: #aaa;
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.search-close-btn:hover {
  background-color: #f0f0f0;
}

.search-close-btn svg {
  width: 24px;
  height: 24px;
}

.search-list-container {
  display: flex;
  flex-direction: column;
  max-height: 70vh; /* Wotè maksimòm anvan li fè scroll */
  overflow-y: auto;
  padding: 8px;
  
  /* Stil pou "scrollbar" la */
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.search-list-container::-webkit-scrollbar {
  width: 8px;
}

.search-list-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* Stil pou tit dat yo (egz: "Today") */
.search-date-group {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  padding: 12px 12px 4px 12px;
}

/* Stil pou chak atik nan lis la */
.search-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-item:hover {
  background-color: #f0f0f0;
}

.search-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-item-icon svg {
  width: 20px;
  height: 20px;
}

.search-item-name {
  flex-grow: 1;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}




.chat-options-modal {
  position: absolute; 
  z-index: 99999999999999; 
  width: 190px; 
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); 
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.chat-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chat-option-btn {
  display: flex;
  align-items: center;
  gap: 10px; /* Espas ant ikòn ak tèks */
  width: 100%;
  
  padding: 8px 10px;
  margin: 0;
  
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif; /* Mwen pran font ou te konn itilize a */
  font-size: 14px;
  font-weight: 400;
  color: #333;
  
  background-color: transparent;
  border: none;
  border-radius: 6px; /* Kwen awondi pou chak opsyon */
  cursor: pointer;
  text-align: left;
  
  transition: background-color 0.2s ease;
}

.chat-option-btn:hover {
  background-color: #f0f0f0; /* Menm koulè hover ak lòt atik ou yo */
}

.chat-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000; /* Koulè default pou ikòn yo */
  flex-shrink: 0;
}

.chat-option-text {
  flex-grow: 1; /* Pèmèt tèks la pran espas epi pouse flèch la adwat */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-option-chevron {
  display: flex;
  align-items: center;
  color: #777;
  flex-shrink: 0;
}

/* Stil espesyal pou bouton 'Delete' la */
.chat-option-btn.danger {
  color: #E53935; /* Koulè wouj pou tèks la */
}

.chat-option-btn.danger .chat-option-icon {
  color: #E53935; /* Koulè wouj pou ikòn nan */
}


.rename-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100011111;
}

.rename-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 400px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.rename-input-container {
  position: relative;
  margin-bottom: 32px;
}

.rename-input {
  width: 100%;
  padding: 16px 14px;
  font-size: 16px;
  border: 2px solid #000;
  border-radius: 8px;
  box-sizing: border-box;
  background: none;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.rename-label {
  position: absolute;
  top: 16px;
  left: 14px;
  font-size: 16px;
  color: #777;
  background-color: #fff;
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.rename-input:focus + .rename-label,
.rename-input:not(:placeholder-shown) + .rename-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #333;
}

.rename-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.rename-btn-cancel,
.rename-btn-confirm {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.rename-btn-cancel {
  color: #333;
}

.rename-btn-cancel:hover {
  background-color: #f0f0f0;
}

.rename-btn-confirm {
  color: #888;
}

.rename-btn-confirm.enabled {
  color: #000;
}

.rename-btn-confirm:hover {
  background-color: #f0f0f0;
}






.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100011111;
}

.share-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 400px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.share-input-container {
  position: relative;
  margin-bottom: 32px;
}

.share-input {
  width: 100%;
  padding: 16px 14px;
  font-size: 16px;
  border: 2px solid #000;
  border-radius: 8px;
  box-sizing: border-box;
  background: none;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.share-label {
  position: absolute;
  top: 16px;
  left: 14px;
  font-size: 18px;
  color: #777;
  background-color: #fff;
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.share-input:focus + .share-label,
.share-input:not(:placeholder-shown) + .share-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #333;
}

.share-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.share-btn-cancel,
.share-btn-confirm {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.share-btn-cancel {
  color: #333;
}

.share-btn-cancel:hover {
  background-color: #f0f0f0;
}

.share-btn-confirm {
  color: #888;
}

.share-btn-confirm.enabled {
  color: #000;
}

.share-btn-confirm:hover {
  background-color: #f0f0f0;
}


.archive-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21474836001; 
}

.archive-modal-content {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 640px; /* Pi laj, jan imaj la montre l la */
  max-height: 80vh; /* Pou li pa janm twò wo */
  display: flex;
  flex-direction: column;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  border: 1px solid #ccc;
}

.archive-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.archive-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.archive-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  transition: background-color 0.2s ease;
}

.archive-close-btn:hover {
  background-color: #f0f0f0;
}

.archive-close-btn svg {
  width: 24px;
  height: 24px;
}

.archive-modal-body {
  overflow-y: auto;
  padding: 8px 24px 24px 24px;
}

.archive-list-header {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 8px;
}

.archive-header-name {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

.archive-header-date {
  width: 151px; 
  font-size: 16px;
  font-weight: bold;
  color: #555;
  flex-shrink: 0;
}

/* Espas vid pou aliyen ak bouton aksyon yo */
.archive-list-header::after {
  content: '';
  width: 60px;
  flex-shrink: 0;
}

.archive-list-container {
  display: flex;
  flex-direction: column;
}

.archive-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.archive-item:hover {
  background-color: #f9f9f9;
}

.archive-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #673de6; 
  margin-right: 12px;
  flex-shrink: 0;
}

.archive-item-icon svg {
  width: 20px;
  height: 20px;
}

.archive-item-name {
  flex: 1;
  color:#673de6; 
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 16px;
}

.archive-item-date {
  width: 130px;
  font-size: 14px;
  color: #555;
  flex-shrink: 0;
  white-space: nowrap;
}

.archive-item-actions {
  width: 80px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.archive-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 4px;
  border-radius: 50%;
  color: #777;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.archive-action-btn:hover {
  background-color: #e0e0e0;
  color: #333;
}

.archive-action-btn svg {
  width: 18px;
  height: 18px;
}


.archive-action-btn.delete:hover {
  background-color: #fdd; 
  color: #D93025; 
}





.delete-modal-overlay {
  z-index: 2147483647410 !important;;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}


.delete-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 420px;
  box-sizing: border-box;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  border: 1px solid #ccc;
}

.delete-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.delete-modal-body {
  font-size: 15px;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.delete-modal-note {
  font-size: 13px;
  color: #777;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.delete-modal-note a {
  color: #777;
  text-decoration: underline;
}

.delete-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.delete-btn-cancel,
.delete-btn-confirm {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px; /* Pou ba li fòm "pill" awondi a */
  transition: background-color 0.2s ease, opacity 0.2s;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.delete-btn-cancel {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
}

.delete-btn-cancel:hover {
  background-color: #f0f0f0;
}

.delete-btn-confirm {
  color: #fff;
  background-color: #D93025; /* Koulè wouj imaj la */
  border: none;
}

.delete-btn-confirm:hover {
  opacity: 0.85;
}

.delete-btn-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}




.invite-modal-overlay {
  z-index: 2147483647410 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; 
  display: flex;
  align-items: center;
  justify-content: center;
}


.invite-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 420px;
  box-sizing: border-box;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  border: 1px solid #ccc;
}

.invite-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.invite-modal-body {
  font-size: 15px;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.invite-modal-note {
  font-size: 13px;
  color: #777;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.invite-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}


.invite-btn-cancel,
.invite-btn-confirm {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.2s ease, opacity 0.2s;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.invite-btn-cancel {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
}

.invite-btn-cancel:hover {
  background-color: #f0f0f0;
}


.invite-btn-confirm {
  color: #fff;
  background-color: #000000; 
  border: none;
}

.invite-btn-confirm:hover {
  opacity: 0.85;
}



.ai-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 310px;
    max-width: 100%;
    height: calc(100vh - 60px);
    z-index: 999999;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: none;
    border-right: 1px solid #ccc;
}

body.sidebar-open .ai-sidebar {
    transform: translateX(0);
}

.sidebar-overlay {
    display: none !important;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-shrink: 0;
  border-bottom: 1px solid #ccc;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0rem;
  font-family: 'GT-Walsheim-Bold-Trial-BF651b7fc737c57', Arial, sans-serif;
  margin-left: 12px;
}

.sidebar-name {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sidebar-header-icons {
  display: flex;
  gap: 0.90rem;
}

.sidebar-nav {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0.75rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  width: 100%;
  font-size: 0.90rem;
}

.coming-soon-badge {
  background-color: transparent; 
  color: #8f8f8f; 
  border-radius: 50px;
  border: 1px solid #ccc;
  margin-left: 10px;
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}


.nav-link:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.sidebar-footer {
  padding: 1rem;
  flex-shrink: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}


.footer-buttons {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  gap: 2px; 
}



.footer-link {
  display: flex;
  align-items: center;
  gap: 0.60rem;
  padding: 0.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 300;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out;
}

.footer-link:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.icon-placeholder {
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: #000;
  flex-shrink: 0;
  text-decoration: none;
}


.upgrade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: #fff;
  font-family: 'MuseoSansRounded-500', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}


.upgrade-svg {
  font-size: 16px;
  color: #444;
}


.upgrade-btn.hidden-upgrade {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}


.footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.upgrade {
  font-size: 10px;
  font-weight: normal;
  color: #666;
  transition: opacity 0.3s ease;
}

.border-separator {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 0.50rem 0; 
}
 
 
.icon-placeholders {
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: #000;
  flex-shrink: 0;
  text-decoration: none;
}

.icon-placeholder .material-symbols-outlined {
  font-size: 28px;
  color: #000;
  text-decoration: none;
}

.icon-placeholders .material-symbols-outlined {
  font-size: 25px;
  color: #000;
  text-decoration: none;
}

#new-chat-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}


.modal-options li.border-bottom {
  border-bottom: 1px solid #ccc;
}

.chevron-right {
  transition: transform 0.3s ease;
}

.chevron-right.rotate {
  transform: rotate(90deg);
}

.has-submenu {
  position: relative;
}



.submenu-modal {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s; /* hover delay */
  z-index: 99999999;
  border: 1px solid #ccc;
}


#submenuModal {
  top: 100%; 
  bottom: auto;
}


#submenuModal.open-up {
  top: auto;        
  bottom: 100%;     
  margin-bottom: 10px; 
  
  transform-origin: bottom right; 
}

.submenu-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.submenu-modal.left {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -12px;
}

.submenu-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-options li {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submenu-options li i {
  margin-right: 10px;
  font-size: 16px;
  color: #555;
}

.submenu-options li:hover {
  background: #f5f5f5;
}




.submenu-modal.center-mobile {
  left: 50%;
  right: auto;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
  top: 40%;
}


.submenu-modal.show.center-mobile {
  opacity: 1;
  visibility: visible;
 
  transform: translate(-50%, 0); 
  transition-delay: 0s;
}


.submenu-modal.center-mobile.left {
  left: 50%; 
  right: auto;
  margin-right: 0;
}


.modal-add {
  position: absolute;
  bottom: 52px; 
  left: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 4px 0;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999999;
  border: 1px solid #ccc;
}

.modal-add.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal-options li {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-options li svg {
  margin-right: 12px;     
  width: 18px;            
  height: 18px;
  flex-shrink: 0;         
}

.modal-options li:hover {
  background: #f5f5f5;
  border-radius: 20px;
}


.modal-options li.border-right {
  position: relative;
}


.modal-options li .chevron-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aaa;
}

li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
}

li .icon {
  width: 18px;  
  height: 18px;
  flex-shrink: 0; 
  display: inline-block;
  vertical-align: middle;
}





.upgrade-account-overlay {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999999999;
  background: transparent;
  animation: fadeInBg 0.3s ease forwards;
}

.upgrade-account-content {
  background-color: #fff;
  border-radius: 16px;
  width: 280px;
  padding: 24px 20px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform-origin: bottom left;
  animation: scaleInBottomLeft 0.35s ease forwards;
  position: relative;
  border: 1px solid #ccc;
  padding-bottom: 30px;
  padding-top: 30px;
}

.upgrade-account-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 14px;
}

.upgrade-account-close-btn:hover {
  background: #f3f4f6;
  color: #000;
}

.upgrade-account-header {
  text-align: center;
  margin-bottom: 30px;
  background: #fafafa;
  border-radius: 20px;
  padding: 20px 10px; /* ajoute espas andedan */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}

.upgrade-account-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.upgrade-account-text {
  color: #101828;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto 10px;
  padding: 0 12px;
  max-width: 240px;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.upgrade-account-btn {
  width: 100%;
  background-color: #101828;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 15px;
  padding: 12px 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.upgrade-account-btn:hover {
  background-color: #333;
}

.upgrade-account-options {
  margin-top: 16px;
}

.upgrade-account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #101828;
  padding: 8px 0;
}

.item-value {
  color: #888;
  font-weight: 500;
}

.upgrade-account-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 12px 0;
}

.upgrade-account-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.upgrade-account-footer a {
  font-size: 12px;
  color: #667085;
  text-decoration: none;
}

.upgrade-account-footer a:hover {
  text-decoration: underline;
}


/* --- Seksyon Stil pou "View Paj" (Tabs) --- */

.plan-switcher {
  display: flex;
  background-color: #f0f0f0; /* Yon fon lejè pou kontenè a */
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px; /* Espas anvan lis detay la */
  border: 1px solid #ddd;
}

.plan-tab {
  flex: 1; /* Pou separe espas la an 3 pati egal */
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #667085; /* Koulè tèks inaktif */
  border-radius: 10px; /* Pou kwen awondi anndan an */
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.plan-tab.active {
  background-color: #ffffff; /* Fè tab aktif la parèt blan */
  color: #101828; /* Koulè tèks aktif (menm jan ak lòt tèks) */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); /* Yon ti lonbraj pou stil */
}

/* --- Seksyon Stil pou Kontni Plan yo --- */

.plan-content {
  display: none; /* Kache tout paj detay yo pa defo */
}

.plan-content.active {
  display: block; /* Montre sèlman paj ki aktif la */
  animation: fadeIn 0.3s ease-in-out; /* Yon ti animasyon */
}

/* --- Seksyon Stil pou Atik nan Lis la (Avèk Ikòn) --- */

/* Sa a se nouvo gwoup la pou kenbe ikòn ak tèks ansanm */
.item-label-group {
  display: flex;
  align-items: center;
  gap: 10px; /* Espas ant ikòn SVG a ak tèks la */
}

.item-icon {
  width: 16px;
  height: 16px;
  color: #28a745; /* Yon koulè vèt pou ikòn "check" la */
  flex-shrink: 0; /* Pou ikòn nan pa janm retresi */
}

/* OU PA BEZWEN CHANJE .upgrade-account-item ou a. 
  Mèsi ak .item-label-group la, stil 'justify-content: space-between;' 
  ou te genyen an ap kontinye mache pafè.
*/

/* Animasyon pou antre */
@keyframes fadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
/* Animations */
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOutBg {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes scaleInBottomLeft {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes scaleOutBottomLeft {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.8) translateY(20px); }
}


/* Pou videyo YouTube */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    margin: 10px 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pou jwè odyo */
audio {
    width: 100%;
    margin: 10px 0;
}

/* Pou touche klavye */
kbd {
    background-color: #eee;
    border-radius: 3px;
    border: 1px solid #b4b4b4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
    color: #333;
    display: inline-block;
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    white-space: nowrap;
}

/* Pou aliyman tèks */
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

/* Pou ikòn (si w itilize yo) */
.fas {
    margin: 0 3px;
}



#audioPlayerModal,
#audioPlayerOverlay {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#audioPlayerModal.show,
#audioPlayerOverlay.show {
    display: block;
    opacity: 1;
}

#audioPlayerOverlay {
    position: fixed;
    inset: 0;
    background-color: transparent;
    z-index: 1000343222434597653566;
    pointer-events: none;
}

#audioPlayerModal {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000343222434597653566;
}

.player-card {
    background-color: white;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 9px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 170px;
    max-width: 90vw;
}

#playerCloseBtn {
    position: absolute;
    top: 15px;
    right: 12px;
    cursor: pointer;
    color: #888;
}
#playerCloseBtn:hover {
    color: #333;
}

#playerPlayPauseBtn {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}



#audioPlayerModal:not(.is-playing) .lucide-pause {
    display: none;
}


#audioPlayerModal.is-playing .lucide-play {
    display: none;
}

#playerTimer {
    font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
    font-size: 1.1rem;
    color: #000;
    min-width: 45px;
}



/* Modal Overlay - Background fonsi a */
.ep-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999999999;
  opacity: 0;
  visibility: hidden;
}

.ep-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box la */
.ep-modal-container {
  background: #fff;
  width: 440px; /* Lajè estanda pou kalite modal sa yo */
  max-width: 90%;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  border: 1px solid #ccc;
}

/* Title */
.ep-title {
  font-size: 20px;
  font-weight: 400;
  color: #242424;
  margin: 0 0 20px 0;
}

/* Avatar Section - Santre tout bagay */
.ep-avatar-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px auto; /* Santre orizontalman */
}

/* Container won an */
.ep-avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* background-color: #2b78c5; <- Ou ka retire koulè sa a si imaj la kouvri tout bagay */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Sa a enpòtan pou imaj la pa depase wonn nan */
}

/* Style pou imaj avatar la */
.ep-avatar-circle img.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Sa a asire imaj la pa defòme menm si li rektangilè */
  display: block;
}

/* Kamera Icon */
.ep-camera-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  z-index: 100;
}


.ep-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-input-group {
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.ep-input-group:focus-within {
  border-color: #000000; 
  box-shadow: 0 0 0 1px #000000 inset;
}

.ep-input-group label {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  pointer-events: none;
}

.ep-input-group input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #242424;
  width: 100%;
  background: transparent;
  padding: 0;
}

/* Helper Text */
.ep-helper-text {
  font-size: 12px;
  color: #888;
  margin-top: 16px;
  line-height: 1.5;
}

/* Buttons */
.ep-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.ep-btn {
  padding: 8px 20px;
  border-radius: 20px; /* Pill shape */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.ep-btn-cancel {
  background: white;
  border-color: #d1d1d1;
  color: #242424;
}

.ep-btn-cancel:hover {
  background: #f5f5f5;
}

.ep-btn-save {
  background: #000;
  color: white;
}

.ep-btn-save:hover {
  background: #333;
}


.avatar-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(-90deg); /* Kòmanse a midi */
  transition: opacity 0.3s ease;
  z-index: 5;
}

.avatar-spinner circle {
  fill: none;
  stroke: #000000; /* Koulè ble */
  stroke-width: 4;
  stroke-linecap: round;
  
  /* MATH: Sikonferans pou 96px ≈ 290 */
  stroke-dasharray: 290;
  
  /* ETAP 1: Kòmanse vide (290) */
  stroke-dashoffset: 290; 
  
  /* Sa a fè liy lan pran 2 segond pou l ranpli */
  transition: stroke-dashoffset 2s linear; 
}

/* LÈ KLAS LA AJOUTE: */
.ep-avatar-wrapper.is-uploading .avatar-spinner {
  opacity: 1; /* Montre l */
}

.ep-avatar-wrapper.is-uploading .avatar-spinner circle {
  stroke-dashoffset: 0; /* Ranpli l nèt */
}
@keyframes fill-avatar-circle {
  0% {
    stroke-dashoffset: 290; /* Vide */
  }
  100% {
    stroke-dashoffset: 0;   /* Plen */
  }
}





.logout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
   z-index: 999999999999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.logout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}


.logout-modal-container {
  background: white;
  padding: 30px;
  width: 380px;
  max-width: 100%;
  border-radius: 16px; 
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
  transition: transform 0.2s ease;
  border: 1px solid #ccc;
}



.logout-modal-overlay.active .logout-modal-container {
  transform: scale(1);
}


.logout-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.logout-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}

.logout-email-highlight {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  font-family: 'GT-Walsheim-Regular-Trial-BF651b7fc71a47d', Arial, sans-serif;
}


.logout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logout-btn-confirm {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.logout-btn-confirm:hover {
  background: #333;
}

.logout-btn-cancel {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 30px; 
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  margin-bottom: 20px;
}

.logout-btn-cancel:hover {
  background: #f5f5f5;
}





/* Container Video a */
.chat-video-container {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 400px;
    border-radius: 25px; 
    overflow: hidden;
    background: #000;
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    cursor: pointer; /* Pou montre li klike */
}


/* Container Video a */
.chat-video-container {
    position: relative;
}


.video-player-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Anpeche itilizatè a klike sou YouTube dirèk */
}

/* 1. Iframe YouTube la (Video) */
.chat-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    
    /* MODIFIKASYON: */
    opacity: 0;
    visibility: hidden; /* Ajoute sa pou l kache nèt */
    z-index: 1; 
    transition: opacity 0s, visibility 0s; /* Instant */
}

/* 1. Iframe la parèt dousman */
.video-playing iframe {
    opacity: 1;
    visibility: visible; /* Fè l vizib */
    z-index: 10; 
    transition: opacity 0.5s ease; 
}

/* Kouvèti (Thumbnail) */
.chat-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 10;
    transition: opacity 0.5s ease;
}

/* Bouton Kontwòl Pèsonalize (Play/Pause) */
.custom-control-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; /* Toujou anlè tout bagay */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.custom-control-btn:hover {
    background: #fff;
}

.custom-control-btn svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

/* Klas pou kache Thumbnail la lè video ap jwe */
.video-playing .chat-video-thumb {
    opacity: 0;
    pointer-events: none;
}

/* Ti CSS rapid pou loader a */
.video-loader { color: #fff; display: flex; align-items: center; justify-content: center; height: 200px; background: #000; }
.spinner { animation: spin 1s linear infinite; margin-right: 10px; display:inline-block; }
@keyframes spin { 100% { transform: rotate(360deg); } }
