
/* Mobasher Latest Posts - styling to match the provided layout closely */
.mlp-mobasher{
  font-family: "Cairo", sans-serif !important;
  background: #fff;
  border-top: 2px solid #2e7d32; /* green line */
  position: relative;
  padding: 0;
  max-width: 100%;
}

/* Title */
.mlp-mobasher .mlp-title{
  font-weight: 700;
  font-size: 20px;
  text-align: right;
  padding: 10px 12px 6px 12px;
  color: #111;
  position: relative;
}
.mlp-mobasher .mlp-title:after{
  content:"";
  display:block;
  height: 1px;
  background: #2e7d32;
  margin-top: 8px;
  opacity: .55;
}

/* Viewport + left red bar */
.mlp-mobasher .viewport{
  position: relative;
  max-height: 330px;     /* vertical list with scroll */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 8px 0;
}
.mlp-mobasher .viewport:before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #d32f2f; /* red vertical bar */
}

/* List */
.mlp-mobasher ul.overview{
  list-style: none;
  margin: 0;
  padding: 0 0 0 0;
}
.mlp-mobasher ul.overview li{
  padding: 10px 12px 10px 18px; /* leave room from red bar */
  border-bottom: 1px solid #ececec;
  margin-left: 4px; /* align after red bar */
}

.mlp-mobasher h3{
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}
.mlp-mobasher h3 a{
  color: #111;
  text-decoration: none;
}
.mlp-mobasher h3 a:hover{
  text-decoration: underline;
}

.mlp-mobasher .date{
  margin-top: 6px;
  font-size: 12px;
  color: #d32f2f; /* red time like the screenshot */
  display: flex;
  gap: 6px;
  align-items: center;
}
.mlp-mobasher .date i{
  color: #d32f2f;
}

/* Scrollbar (WebKit) */
.mlp-mobasher .viewport::-webkit-scrollbar{
  width: 6px;
}
.mlp-mobasher .viewport::-webkit-scrollbar-track{
  background: #f2f2f2;
}
.mlp-mobasher .viewport::-webkit-scrollbar-thumb{
  background: #2e7d32;
  border-radius: 8px;
}

/* Scrollbar (Firefox) */
.mlp-mobasher .viewport{
  scrollbar-width: thin;
  scrollbar-color: #2e7d32 #f2f2f2;
}
