::-webkit-scrollbar {
  width: 10px;               /* vertical scrollbar */
  height: 10px;              /* horizontal scrollbar */
}

/* Track (area behind the thumb) */
::-webkit-scrollbar-track {
  background: #d6f5d6;       /* light gray background */
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #3c3;          /* medium gray thumb */
  border-radius: 6px;        /* rounded corners */
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #060;          /* dark gray on hover */
}

/* Optional: scrollbar corner (bottom-right in both vertical & horizontal scrollbars) */
::-webkit-scrollbar-corner {
  background: #d6f5d6;
}

/* ---------------------
   SCROLLBAR: Firefox
---------------------- */

/* Applies to all elements */
* {
  scrollbar-width: thin;                     /* options: auto | thin | none */
  scrollbar-color: #3c3 #d6f5d6;             /* thumb color | track color */
}

.fit-text {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mob-nav-nk {
  padding: 10px 5px 5px 5px;
  border-bottom: 1px solid #1A1A1A;

  display: flex;               
  overflow-x: auto;  
  white-space: nowrap;  
  gap: 6px;     
  scroll-behavior: smooth;
  scrollbar-width: thin; 
}


.mob-nav-nk a {
  display: inline-block;
  border: 1px solid #3c3;
  border-radius: 0 5px 0 5px;
  font-weight: bold;
   padding: 0 6px 0 6px;
   background: #0a290a;
  color: #ccc;
  font-size: 13px;
  margin: 1px 0 4px 0;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap; 
  flex-shrink: 0;   
}


.mob-nav-nk::-webkit-scrollbar {
  height: 6px;
}

.mob-nav-nk::-webkit-scrollbar-track {
  background: transparent;
}

.mob-nav-nk::-webkit-scrollbar-thumb {
  background-color: #3c3;
  border-radius: 3px;
}

.share-buttons a {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  background-color: var(--btn-color);
}

.share-buttons a:hover {
    color: #fff;
  background-color: hsla(221, 44%, 41%, 0.8);
}

/* Individual button colors using CSS variables */
.btn-facebook  { --btn-color: #3b5998; }
.btn-twitter   { --btn-color: #1da1f2; }
.btn-whatsapp  { --btn-color: #25d366; }
.btn-telegram  { --btn-color: #0088cc; }


 blockquote {
  font-style: italic;
  border-left: 4px solid #98e698;
  padding: 12px 20px;
  margin: 20px 0;
  border-radius: 0 10px 0 10px;
  background-color: #0a290a;
  color: #fff;
  line-height: 1.6;
}

.label-dot::before {
  content: "●";
  color: green;
  margin-right: 6px;
  font-size: 12px;
  vertical-align: middle;
}
.label-dot{
    color: #ccc;
}
.dot3 {
    white-space: nowrap;        /* Prevents text from wrapping to a new line */
  overflow: hidden;           /* Hides any text that overflows the container */
  text-overflow: ellipsis;
}
.article a {
    color: #3c3;
}
.article h2 a {
    color: #3c3;
}
.article h3 a {
    color: #3c3;
}
.article h4 a {
    color: #3c3;
}

#connection-status {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    text-align: center;
    color: white;
    font-weight: bold;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
    pointer-events: auto;
}



#connection-status.offline {
    background-color: red;
}

#connection-status.online {
    background-color: #3c3;
}

#connection-status.hidden {
    opacity: 0;
    pointer-events: none;
}