/* 20240912 */
:root {
  --bg: #1C1C1C;
  --text: #FFFFFF;
}

/* Global styles for mobile screens */
body {
  max-width: 475px; /* Mobile screen width */
  margin: 0 auto; /* Center content */
  background: var(--bg);
  color: var(--text);
  font-family: 'verdana';
}

/* Remove default margin and padding */
* {
  margin: 0;
  box-sizing: border-box;
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* Main container restricted to mobile width */
.container {
  max-width: 475px; /* Mobile screen width */
  padding: 10px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NAVBAR */
.navbar {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  position: sticky;
  top: 0;
  padding: 10px;
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  height: 50px;
}

.links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  height: 50px;
}

.search-container {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.searchButton {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #1C1C1C;
  padding: 5px;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 20px 0;
}

.social {
  display: flex;
  gap: 10px;
}

/* LIST */
.listItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.listItemImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.listItemTitle {
  font-size: 21px;
}

.listItemTexts {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.listItemDetail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.listItemAvatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.listItemCategories {
  display: flex;
  gap: 10px;
}

.listItemCategory {
  margin-bottom: 5px;
  padding: 3px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #1C1C1C;
  font-size: 14px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
  font-size: 12px;
}

.page-item {
  border: 1px solid gray;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.page-item.active {
  background-color: var(--text);
  color: var(--bg);
}

.page-item.disabled {
  background-color: #313845;
  cursor: not-allowed;
}

/* SINGLE POST */
.singleHead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.singleHeadTexts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.singleHeadTitle {
  font-size: 18px;
}

.singleHeadDesc {
  font-size: 14px;
  font-weight: 300;
}

.singleAvatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.singleCategory {
  padding: 5px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #1C1C1C;
  font-size: 14px;
}
.singleCategoryTags {
  padding: 5px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #1C1C1C;
  font-size: 14px;
  line-height: 33px;
}
.singleHeadImg {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.singleBottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.singleContent {
  font-size: 14px;
  line-height: 1.5;
}

.singleContent img {
  width: 100%;
  object-fit: cover;
}
.rightBarImgHr{
  width: 100%;
}

/* BACK BUTTON */
.back-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* POST NAVIGATION BUTTONS */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 12px;
}

.post-navigation a {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.post-navigation a:hover {
  background-color: #0056b3;
}

/* PLAIN PAGE */
.plainPage {
  line-height: 30px;
}

.plainPage h1, h2 {
  line-height: 35px;
}

.plainPage h3 {
  line-height: 35px;
}
.plainPage h2, h3 {
  color: #ffcc00;
}

/* PRICING PAGE */
blockquote {
  border-left: 4px solid #ffcc00;
  padding-left: 10px;
  margin-left: 0;
  font-style: italic;
  color: #ffcc00;
}

#pricing-note {
  font-weight: bold;
  color: #ff0000;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

.whatsapp-link:hover {
  background-color: #1ebd58;
}
/*Blog list*/
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.blog-item p {
  font-size: 14px;
  color: #888;
}
/* WhatsApp Button Starts */  
  /* Common button styles */
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  .cta-button {
    background-color: #25D366; /* WhatsApp green */
    color: white;
  }
  
  .cta-button:hover {
    background-color: #128C7E; /* Darker green */
    color: white;
  }
  
  /* WhatsApp Button Ends */  