
        /* visited Topics CSS..*/
        .visited-topic {
            color: #888888 !important;
            font-style: italic;
        }
        .kings { box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19); }
        .text-mid{ text-align: center; }
        .p-body{ text-align: justify; color: #333; font-size: 16px; font-family: Candera; }
        .quote{ font-style: italic; font-weight: 600; }
        .footer-ads img {
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        .footer-ads img:hover {
            transform: scale(1.05);
        }


        /*Search result Classes*/
          .highlighted {
            background-color: yellow;
            font-weight: bold;
        }
        .highlight-term {
        background-color: #fffa87;
        color: #222;
        font-weight: bold;
        padding: 0 2px;
        border-radius: 2px;
    }

       /* Container for the search bar */
.search-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 0 15px;
    position: relative;
}

/* Input box styling */
.search-container input[type="text"] {
    width: 100%;
    padding: 14px 50px 14px 18px; /* right padding for icon space */
    font-size: 17px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* Search icon (as a submit button) */
.search-container button {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    padding-right: 10px;
}

.search-container input[type="text"] {
    width: 100%;
    padding: 34px 50px 34px 20px; /* taller: 30% more */
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}


.search-container button:hover {
    color: #007bff;
}

@media (max-width: 640px) {
    .search-container {
        margin: 30px auto;
    }

    .search-container input[type="text"] {
        font-size: 16px;
        padding-right: 45px;
    }
}
    
 /* By default show desktop, hide mobile */
.logo-desktop {
  display: inline;
}
.logo-mobile {
  display: none;
}

/* When screen is 768px or below, show mobile logo */
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: inline;
  }
}



/* Glider Slider Styles */

 /* ✅ Glider Container */
                .glider-contain {
                  margin-top: 10px;
                  position: relative;
                  max-width: 100%;
                  overflow: hidden;
                  padding: 0 8px; /* prevents arrows from overflowing */
                }

                /* ✅ Image Styling */
                .glider img {
                  border-radius: 8px;
                  width: 100%;
                  height: auto;
                  display: block;
                }


                /* ✅ Dots below the image */
                .dots {
                  margin-top: 10px;      /* space below the slider */
                  display: flex;
                  justify-content: center;
                  gap: 8px;
                }

                .dots button {
                  width: 12px;
                  height: 12px;
                  border-radius: 50%;
                  border: none;
                  background: #bbb;
                  cursor: pointer;
                }

                .dots .glider-dot.active {
                  background: #333;
                }


 

/*Comment C=Button*/
.reply-btn-container {
    text-align: center;
    margin-bottom: 10px;
}

.reply-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reply-btn:hover {
    background-color: #green;
}

.reply-btn-secondary {
    background-color: #0090CF;
}

.reply-btn-secondary:hover {
    background-color: #5a6268;
}

/*ADVERT IMAGE */

.ad-image {
    width: 100%;
    height: auto;
    max-height: 350px; /* default for desktops */
    object-fit: contain; /* keeps the whole image visible */
}

@media (max-width: 768px) {
    .ad-image {
        max-height: 200px; /* smaller height for tablets/phones */
    }
}

@media (max-width: 480px) {
    .ad-image {
        max-height: 150px; /* even smaller height for tiny screens */
    }
}
