    :root {
      --bg-light: #ffffff;
      --card-light: #f5f5f5;
      --text-dark: #333333;
      --accent-color: #116e4c;
      --maroon: #800000;
      --border-color: #e0e0e0;
        --attachment-color: #116e4c;
    }
    .dark-mode {
      --border-color: #333333;
      transition: background-color 0.3s, color 0.3s;
    }

    html, body {
     margin: 0 auto;height: 100%;width: 100%; 
      max-width: 472px;
      font-family: Arial, sans-serif;
      background: black; color: var(--text-dark);
      display: flex; flex-direction: column;
    }
    
    .header {
      background: var(--bg-light); color: var(--text-dark);
      padding: 10px 15px;
      display: flex; justify-content: space-between; align-items: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      border-bottom: 1px solid var(--border-color);
    }
    .title {
      font-weight: bold; font-size: 18px;
      color: var(--text-dark); text-decoration: none; cursor: pointer;
    }
    .menu {
      display: flex; align-items: left; gap: 12px;
      position: relative;
    }
    .menu-btn, .dark-mode-btn, .share-btn {
      background: transparent; border: none; cursor: pointer;
      color: var(--text-dark);
    }
    .menu-btn { font-size: 20px; }
    .share-btn { 
      font-size: 14px; 
      padding: 5px 10px;
      cursor: pointer;
    }
    .dark-mode-btn { font-size: 20px; padding: 5px; }
/* Default untuk mobile (layar <= 472px) */
.dropdown {
    position: absolute; 
    top: 50px; 
    right: -15px;
    background: var(--bg-light); 
    color: var(--text-dark);
    border-radius: 5px; 
    display: none; 
    z-index: 10;
    width: max-content;
    max-width: 199px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

/* Khusus desktop (layar > 472px) */
@media (min-width: 473px) {
    .dropdown {
        right: -15px;
    }
    #moreMenu{left: auto;}
}

#moreMenu {
  position:absolute;
  bottom:60px;
  
  background:var(--bg-light);
  border:1px solid var(--border-color);
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
  padding:8px;
  z-index:1000;}
  
    .dropdown button {
      width: 100%; padding: 10px; border: none;
      background: transparent; color: var(--text-dark);
      text-align: left; cursor: pointer;
    }
    .dropdown button:hover {
      background: rgba(0,0,0,0.05);
    }
    .dark-mode .dropdown button:hover {
      background: rgba(255,255,255,0.05);
    }
    #main {
      flex: 1; overflow-y: auto;
      background: var(--card-light); padding: 10px;
    }
    .user-item {
      padding: 12px; border-bottom: 1px solid var(--border-color);
      cursor: pointer; background: var(--bg-light);
      margin-bottom: 5px;
      border-radius: 5px;
    }
    .user-item:hover { background: rgba(0,0,0,0.03); }
    .dark-mode .user-item:hover { background: rgba(255,255,255,0.03); }
    .chat-box {
      display: flex; flex-direction: column; height: 100%;
    }
    #chatMessages {
      flex: 1; overflow-y: auto; padding: 10px;
      background: var(--bg-light);
    }
.message {
  max-width: 80%; 
  margin: 5px 0; 
  padding: 10px 15px;
  border-radius: 20px; 
  word-wrap: break-word;
  width: fit-content;
  position: relative;
}

.message.me {
  background: var(--accent-color); 
  margin-left: auto; 
  color: white;
  border-top-right-radius: 4px; 
        --attachment-color: #ffeb3b;
}

.message.you {
  background: var(--border-color); 
  margin-right: auto; 
  color: var(--text-dark);
  border-top-left-radius: 4px; 
}


.message.me::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: var(--accent-color);
  border-right: 0;
  border-top: 0;
  margin-top: 0;
  margin-right: 0;
}

.message.you::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: var(--border-color);
  border-left: 0;
  border-top: 0;
  margin-top: 0;
  margin-left: 0;
}

	.message.me a {
  word-break: break-all;
  padding: 0 2px;
  border-radius: 3px;
  transition: background-color 0.2s;
  color:lime !important;
  font-style:italic;
}

.dark-mode .message.me a {
	font-style:italic;
  color: lime !important;
}


.message.you a{color: blue !important;font-style:italic;}

.dark-mode .message.you a{color: #4DA6FF !important;font-style:italic;}


    .sender-id {
      font-size: 11px; opacity: 0.6; margin-top: 3px; text-align: left;
    }
    .input-bar {
      display: flex; padding: 10px; background: var(--bg-light);
      border-top: 1px solid var(--border-color);
    }
    .input-bar input {
      flex: 1; border-radius: 20px; border: 1px solid var(--border-color);
      background: var(--bg-light); color: var(--text-dark);
      padding: 10px 10px; font-size: 14px;width:100%;
    }
    .input-bar button {
      margin-left: 8px; padding: 10px 22px;
      border: none; background: var(--accent-color); color: white;
      font-weight: bold; border-radius: 20px; cursor: pointer;
    }
    .my-id {
      font-size: 12px; opacity: 0.7;
      text-align: center;
      margin-top: 5px;
    }
    .hidden-message {
      text-align: center; padding: 30px; color: #d32f2f;
    }
    .empty-chat-hint {
      text-align: center; margin-top: 30px; color: gray; font-style: italic;
    }
    .modal {
      display: none; position: fixed; inset: 0;
      background: rgba(0, 0, 0, 0.6); z-index: 99;
      justify-content: center; align-items: center;
    }
    .modal-content {
      background: var(--bg-light); padding: 20px; border-radius: 10px;
      max-width: 400px; color: var(--text-dark); text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    .modal-content button {
      margin-top: 15px;
      padding: 8px 16px;
      border: none; background: var(--accent-color); color: white;
      border-radius: 5px; cursor: pointer;
    }

    .chat-header {
      display: flex;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid var(--border-color);
      background: var(--bg-light);
    }
    .back-btn {
      font-size: 28px;
      margin-right: 10px;
      cursor: pointer;
      background: var(--bg-light);
      border: none;
      color: var(--text-dark);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .back-btn:hover {
      background: rgba(0,0,0,0.05);
    }
    .dark-mode .back-btn:hover {
      background: rgba(255,255,255,0.05);
    }
    .chat-title {
      font-weight: bold;
      flex: 1;
      text-align: center;
    }
.header-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: flex-start; 
  text-align: left; 
}

    .header-main-title {
  font-weight: bold;
  font-size: 18px;
}

.logo-s {
  color: #F57F17; 
    font-size: 22px;
  display: inline;
}

.logo-b {
  color: #2196F3; 
    font-size: 22px;
  display: inline;
}
    .header-sub-title {
      font-size: 12px;
      opacity: 0.7;
    }
    
    .chat-mode .header-title {
  align-items: center;
  text-align: center;
}
body.chat-mode #shareButton {
  display: none !important;
}
.user-item button.delete-btn {
  background: transparent;
  border: none;
  color: #d32f2f; 
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-item button.delete-btn:hover {
  background-color: rgba(211, 47, 47, 0.2);
  color: #b71c1c;
  transform: scale(1.1);
}
#btnImage {
  background: transparent;
  border: none;
  color: var(--text-dark); 
  cursor: pointer;
  font-size: 18px;
}
#btnUpload, #btnVideo{font-size: 18px;}

.emoji-btn {
  width: 16px !important;
  height: 16px !important;
  background: url('https://res.cloudinary.com/dry7cujup/image/upload/smileys_eyhrpd.png') no-repeat;
  background-size: 16px 80px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 4px;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}


.emoji-btn-animated {
  width: 16px !important;
  height: 16px !important;
  background: url('https://res.cloudinary.com/dry7cujup/image/upload/emoticons_h4jrrg.png') no-repeat;
  background-size: 16px 2416px; 
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 4px;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}


.emoji-message {transform: scale(1.2);
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background: url('https://res.cloudinary.com/dry7cujup/image/upload/smileys_eyhrpd.png') no-repeat;
  background-size: 16px 80px;
  vertical-align: middle !important;
  overflow: hidden !important;
}


.emoji-message-animated {transform: scale(1.2);
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background: url('https://res.cloudinary.com/dry7cujup/image/upload/emoticons_h4jrrg.png') no-repeat;
  background-size: 16px 2416px; 
  vertical-align: middle !important;
  overflow: hidden !important;
}


.emoji-message-animated {
  will-change: background-position-y;
}


.emoji-panel {
	width:50%;
  position: absolute;
  bottom: 80px;
  right: 80px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: scale(1.2);
}


#btnEmoji {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.input-bar button {
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: transparent;
  padding: 2px; 
  margin: 2px; 
}

.input-bar button#btnSend {
  background: var(--accent-color);
  color: white;
  cursor:auto;
  border-radius: 20px;
  width: auto; 
  padding: 9px 16px; 
}

@keyframes buttonPulse {
  0%   { background-color: var(--accent-color); }
  10%  { background-color: orange; }
  20%  { background-color: var(--accent-color); }
  30%  { background-color: orange; }
  40%  { background-color: var(--accent-color); }
  50%  { background-color: orange; }
  60%  { background-color: var(--accent-color); }
  70%  { background-color: orange; }
  80%  { background-color: var(--accent-color); }
  90%  { background-color: orange; }
  100% { background-color: var(--accent-color); }
}
.flashing {
  animation: buttonPulse .5s infinite ease-in-out;
}


.dark-mode .emoji-btn,
.dark-mode .emoji-message {
  background-image: url('https://res.cloudinary.com/dry7cujup/image/upload/smileys_eyhrpd.png');
}
.dark-mode .emoji-btn-animated,
.dark-mode .emoji-message-animated {
  background-image: url('https://res.cloudinary.com/dry7cujup/image/upload/emoticons_h4jrrg.png');
}

.emoji-btn:hover,
.emoji-btn-animated:hover {
  background-color: rgba(0, 0, 0, 0.05);
  outline: 2px solid var(--accent-color);
}

.dark-mode .emoji-btn:hover,
.dark-mode .emoji-btn-animated:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


.input-bar {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  padding: 10px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);  
}


body:not(.dark-mode) .emoji-btn,
body:not(.dark-mode) .emoji-message {
  background-image: url('https://res.cloudinary.com/dry7cujup/image/upload/smileys_eyhrpd.png');
}
body:not(.dark-mode) .emoji-btn-animated,
body:not(.dark-mode) .emoji-message-animated {
  background-image: url('https://res.cloudinary.com/dry7cujup/image/upload/emoticons_h4jrrg.png');
}

.user-item button.fav-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.user-item button.fav-btn:hover {
  background-color: rgba(255, 215, 0, 0.2); 
  transform: scale(1.1);
}

.dark-mode .user-item button.fav-btn:hover {
  background-color: rgba(255, 215, 0, 0.3);
}

.user-item .button-group {
  display: flex;
  justify-content: flex-end; 
  gap: 5px; 
  align-items: center;
}

.user-item button.fav-btn,
.user-item button.edit-btn,
.user-item button.delete-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.user-item button.fav-btn:hover {
  background-color: rgba(255, 215, 0, 0.2); 
  transform: scale(1.1);
}

.user-item button.edit-btn:hover {
  background-color: rgba(0, 128, 0, 0.2); 
  transform: scale(1.1);
}

.user-item button.delete-btn:hover {
  background-color: rgba(255, 0, 0, 0.2); 
  transform: scale(1.1);
}

.dark-mode .user-item button.fav-btn:hover {
  background-color: rgba(255, 215, 0, 0.3);
}

.dark-mode .user-item button.edit-btn:hover {
  background-color: rgba(0, 255, 0, 0.3);
}

.dark-mode .user-item button.delete-btn:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

:root {
  --favorite-bg: #71c178;
  --favorite-bg-dark: #1f4722;
}

.dark-mode {
  --favorite-bg: #1f4722;
}
.user-item.favorite {
  background-color: var(--favorite-bg) !important;
}

.dark-mode .user-item.favorite {
  background-color: var(--favorite-bg-dark) !important;
}

@keyframes starBounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.2) rotate(15deg);
  }
}

@keyframes starPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.user-item button.fav-btn {
  transition: all 0.3s ease;
}

.user-item button.fav-btn.animate {
  animation: starBounce 0.6s ease;
}

.user-item button.fav-btn.pulse {
  animation: starPulse 0.4s ease;
}

.user-item button.fav-btn.favorited {
  position: relative;
}

.user-item button.fav-btn.favorited::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, gold 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.user-item button.fav-btn.favorited:hover::after {
  opacity: 0.6;
}


.audio-wrapper button {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.audio-wrapper:hover button {
  transform: scale(1.9);
  background-color: rgba(0, 0, 0, 0.1);
}

.dark-mode .audio-wrapper:hover button {
  background-color: rgba(255, 255, 255, 0.1);
}



#btnMic {
  
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  transition: all 0.3s;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  
}


#btnMic.recording {
  background: lime;
  animation: pulse 1.5s infinite;
}

#btnMic.recording::after {
  content: "🔴rec";
  color:black;
  font-size:10px;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid lime;
  animation: ripple 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

#btnCamera {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 18px;
}
    
    #btnLocation {
      background: transparent;
      border: none;
      color: var(--text-dark);
      cursor: pointer;
      font-size: 18px;
    }
    
    
    .map-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }
    
    .map-content {
      background: var(--bg-light);
      width: 90%;
      max-width: 500px;
      height: 70vh;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    
    .map-header {
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-color);
    }
    
    .map-container {
      flex: 1;
      min-height: 300px;
    }
    
    
    .map-container .leaflet-control-attribution {
      display: none !important;
    }
    
    .map-actions {
      padding: 15px;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      border-top: 1px solid var(--border-color);
    }
    
    .map-actions button {
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    
    .btn-close-map {
      background: #f44336;
      color: white;
    }
    
    .btn-share-location {
      background: var(--accent-color);
      color: white;
    }
    
    
    .location-message {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 15px;
      background: rgba(0, 0, 0, 0.05);
      border-radius: 18px;
      cursor: pointer;
      max-width: 80%;
    }
    
    .dark-mode .location-message {
      background: rgba(255, 255, 255, 0.1);
    }
    
    .location-icon {
      font-size: 14px;
    }
    
    .location-text {
      font-size: 13px;
      font-weight: 500;
    }
    
    
    .location-popup-map {
      height: 250px;
      width: 100%;
      border-radius: 8px;
      margin: 10px 0;
    }
    
    
    .location-popup-map .leaflet-control-attribution {
      display: none !important;
    }
    
    
    .custom-location-popup {
      width: 90% !important;
      max-width: 500px !important;
      padding: 0 !important;
    }
    
    .custom-location-popup .sweet-alert {
      padding: 0;
      width: 100%;
    }
    
    .location-popup-header {
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-color);
      background: var(--bg-light);
      color: var(--text-dark);
    }
    
    .location-popup-body {
      padding: 15px;
      text-align: center;
      background: var(--bg-light);
    }
    
    .location-popup-footer {
      padding: 15px;
      display: flex;
      justify-content: center;
      gap: 10px;
      border-top: 1px solid var(--border-color);
      background: var(--bg-light);
      flex-wrap: wrap;
    }
    
    .location-popup-footer a {
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    
    .btn-google-maps {
      background: #4285F4;
    }
    
    .dark-mode .btn-google-maps {
      background: #1a73e8;
    }
    
    .btn-waze {
      background: #33CCFF;
    }
    
    .dark-mode .btn-waze {
      background: #1eb8e0;
    }
    
    .btn-close-popup {
      position: absolute;
      top: 10px;
      right: 10px;
      background: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #888;
      z-index: 1000;
    }
    
    .btn-close-popup:hover {
      color: #000;
    }
    
    .dark-mode .btn-close-popup {
      color: #ccc;
    }
    
    .dark-mode .btn-close-popup:hover {
      color: #fff;
    }
    
    
    #locationPopupOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

.sweet-alert h2 {
  font-size: 19px !important; 
}
#reader {
  width: 100% !important;
  height: auto;
}
code{color:#000;font-size:14px;font-weight:bold;}

#btnMore {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  color: var(--text-dark);
}

#moreMenu button {
  display: block;
  width: 100%;
  padding: 8px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
  border-radius: 5px;
}

#moreMenu button:hover {
  background: rgba(0,0,0,0.05);
}

.dark-mode #moreMenu {
  background: var(--card-light);
}
.dark-mode #moreMenu button:hover {
  background: rgba(255,255,255,0.1);
}

    
    .ntfy-settings {
      padding: 15px;
      background: var(--bg-light);
      border-radius: 8px;
      margin: 10px 0;
      border: 1px solid var(--border-color);
    }
    
    .ntfy-settings h3 {
      margin-top: 0;
      color: var(--text-dark);
      text-align: center;
    }
    
    .ntfy-option {
      display: flex;
      flex-direction: column;
      margin: 15px 0;
    }
        .ntfy-options{display:none}
    .ntfy-option label {
      margin-bottom: 5px;
      font-weight: bold;
    }
    
    .ntfy-option input {
      padding: 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      background: var(--bg-light);
      color: var(--text-dark);
    }
    
    .ntfy-instructions {
      background: rgba(0, 0, 0, 0.05);
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      font-size: 14px;
      text-align:left;
    }
    
    .dark-mode .ntfy-instructions {
      background: rgba(255, 255, 255, 0.05);
    }
    
    .ntfy-instructions ol {
      padding-left: 20px;
      margin: 10px 0;
    }
    
    .ntfy-instructions li {
      margin-bottom: 8px;
    }
    
    .qr-container {
      text-align: center;
      margin: 15px 0;
    }
    
    .test-buttons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }
    
    .test-button {
      flex: 1;
      padding: 8px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    
        .btn-detect-location {
      background: #ff9800;
      color: #000;
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-right: 10px;
    }
    
    .btn-detect-location:hover {
      background: #f57c00;
    }
    
    .dark-mode .btn-detect-location {
      background: #ffa726;
    }
    
    .dark-mode .btn-detect-location:hover {
      background: #ff9800;
    }
 
  
  .input-with-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .input-with-buttons input {
    flex: 1;
  }
  
  .input-with-buttons button {
    background: none;
    color: orange;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .generate-btn{text-decoration:underline;}
  
  .input-with-buttons button:hover {
    opacity: 0.9;
  }
  

  input#ntfyTopic{color:gray;outline:none}
    
    .whatsapp-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }
    
    .whatsapp-content {
      background: var(--bg-light);
      padding: 20px;
      border-radius: 10px;
      max-width: 400px;
      width: 90%;
      color: var(--text-dark);
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    .whatsapp-option {
      margin: 15px 0;
      text-align: left;
    }
    

    .whatsapp-option input {
      width: 95%;
      padding: 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      background: var(--bg-light);
      color: var(--text-dark);
    }
    

    .test-whatsapp-btn {
      margin-top: 15px;
      padding: 10px 16px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-weight: bold;
    }
    code#copyLink{color:gray}