.back-button a {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    text-decoration: none;
    color : #0098F0;
    height: 32px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
}

.back-button svg {
    margin-left: 8px; /* Adjust this value to control the spacing between the text and the icon */
}

#blogposts{
    align-items: start;
    direction: ltr;
}
#blogposts .article__title, p, h2{
    word-break: break-all;
}
.article-single__image{
    width: 100%;
}
.article-single__head-info {
    display: block;
}
.disabled{
    color : gray;
    cursor: not-allowed;
}
.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  margin-top: 70px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.copyUrl{
  cursor: pointer;
}
.article-single__footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu--social {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu--social li {
    margin-left: 10px;
}

.pagination-minimal {
    display: flex;
    align-items: center;
    color: #0098F0;
}

.navButton, .navButton-disabled {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    flex-wrap: nowrap!important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 4px 8px;
    border-radius: 8px;
    text-decoration: none;
    margin: 0 5px;
    box-sizing: border-box; /* Ensure padding and border are included in height */
}

.navButton:hover {
    background-color: #F7F7FB;
}

.navButton-disabled {
    color : gray!important;
    cursor: not-allowed;
}

.pagination {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: ruby;
    direction: ltr;
    gap : 10px
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination a {
  display: inline-flex; /* Use flexbox to center content */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 4px;
  height: 28px;
  width: 28px;
  font-weight: 100;
  font-size: 12px;
  line-height: 1; /* Adjust line height to center vertically */
  text-align: center;
}

.pagination a.active {
  background-color: #FFD900;
  color: black;
}

.pagination a:hover:not(.active) {
  border: 1px solid #BBE6FF;
  background-color: #E5F6FF;
  transition: none !important; /* Disable transition on hover */
}

.pagination-navigators {
    background-color: #E5F6FF;
    font-size: 20px!important;
}

.pagination .prev,
.pagination .next {
    background-color: #f0f0f0;
    color: black;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #ddd;
}
