body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  margin: 0;
  padding: 2rem;
  line-height: 1.7;
}

.article {
  margin: auto;
  padding: 2rem;
}

h1 {
  color: #1d4ed8;
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

h2 {
  color: #1d4ed8;
  font-size: 1.5rem;
  margin-top: 2rem;
}

h3 {
  color: #1d4ed8;
  /* Added margin-bottom for better spacing in troubleshooting section */
  margin-bottom: 0.5rem;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

p {
  margin-top: 1rem;
  font-size: 1rem;
}

strong {
  color:#333333;
}

ol {
  padding-left: 1.5rem;
}

li {
  margin: 0.5rem 0;
}

code {
  background-color: #f3f4f6;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: monospace;
}

pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
}

pre strong {
  font-size:17px;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  width:100%;
}

table {
  border-collapse: collapse;
  margin:0 auto;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align:center;
}

th {
  background-color: #f2f2f2;
  text-align: center;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}
    
.code-block-in-troubleshooting {
  margin-bottom:60px;
}

/* Specific styling for troubleshooting section paragraphs */
.troubleshooting-section p {
  margin-bottom: 1.5rem; /* Added margin-bottom for paragraphs in troubleshooting */
}

.twitter-tweet {
  margin:auto;
}

li img {
  display:block;
  margin: 10px 0 10px 0;
}

.image-source {
  text-align:center;
  margin:0 auto;
  font-size:11.5px;
  width:90%;
}

/*Font size for Laptop or device with more bigger width*/
@media screen and (min-width:1024px) {
  .image-source {
    font-size:11.5px;
  }
}

/*Font size for Tablet*/
@media screen and (max-width:1023px) {
  .image-source {
    font-size:8px;
  }
}

@media (max-width:1024px) and (min-width:768px) {   
  pre {
    width:95%;
  }
}

@media (max-width:681px) {   
 .twitter-widget-resizer {
    width:90%;
  }
}

@media (max-width:767px) and (min-width:425px) {
  pre {
    width:86%;
  }
}

/*Font size for Mobile L*/
@media screen and (max-width:424px) {
  .image-source {
    font-size:6px;
  }

  pre {
    width:77%;
  }
}

/*Font size for Mobile M*/
@media screen and (max-width:375px) {
  .image-source {
    font-size:4.4px;
  }
}

/*Font size for Mobile S*/
@media screen and (max-width:320px) {
  .image-source {
    font-size:2px;
  }
}

.separator {
  width:90%;
  height:90%;
  margin:0 auto;
}

.dropbtn {
  background-color: white;
  color: black;
  border:none;
  padding: 16px;
  font-size: 16px;
  margin:0 0 4px 5px;
  cursor: pointer;
}
    
.dropdown {
  position: relative;
  display: block;
  padding:0 4px 0 4px;
}
    
.dropdown-content {
  display: none;
  background-color: white;
  border:1px double black;
  border-radius:0px 0px 5px 5px;
  width: 100%;
  overflow: auto;
}
    
.dropdown-content div {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.flex-container {
  display:flex;

}

/* Here's the style for a article card */

.article-card {
  position:relative;
  display:flex;
  width:489.2px;
  height:110px;
  margin:auto;
  justify-content:center;
  align-items:center;
}
      
.also-read-text {
  position: absolute;
  z-index:10;
  top:-10px;
  left:2px;
  padding-left:7px;
  padding-right:7px;
}
.also-read-text span {
  background-color:white;
  padding:6px 6px 0px 6px;
}

      
.article-card-content {
  display:flex;
  width:100%;
  height:100px;
  border:2px double #94A7DA;
  border-radius:8px;
  cursor:pointer;
  transition: box-shadow 0.5s ease-out;
}

.article-card-content:hover {
  box-shadow: 0 6px 18px #6D89D8;
}

.thumbnail {
  display:flex;
  width:25%;
  height:100%;
}
.thumbnail img {
  display:flex;
  justify-content:center;
  align-items:center;
  width:75%;
  height:70%;
  margin: auto;
}

.article-title {
  width:75%;
  height:100%;
}
.article-title strong {
  display:flex;
  align-items:center;
  margin-left:5%;
  margin-right:5%;
  margin-top:auto;
  margin-bottom:auto;
  height:100%;
}
@media screen and (max-width:603px) {
  .article-card {
    width:100%;
  }
}
@media screen and (max-width:588px) {
  .article-title strong {
    font-size:12px;
  }
}

@media screen and (max-width:575px) {
  .thumbnail {
    width:30%;
  }
  .article-title {
    width:70%;
  }
}

@media screen and (max-width:460px) {
  .thumbnail {
    width:40%;
  }
  .article-title {
    width:60%;
    line-height:2;
  }
}

@media screen and (max-width:398px) {
  .thumbnail {
    display:none;
  }
  .article-title {
    width:100%;
    line-height:1.5;
  }
}



