.kaynakca, 
.kaynakca + ul li, 
.kaynakca + ul li a {
  color: lightgrey;
  text-decoration: none; /* Linklerin alt覺n覺 kald覺rmak istersen */
}

/* CSS KISMI - Sadece bu stilleri <style> etiketi içine veya harici CSS dosyasına ekleyin */

.donnie-comparison {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #c41e3a;
    margin: 12px auto 0;
    border-radius: 2px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.person-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.person-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-bottom: 4px solid #c41e3a;
}

.person-info {
    padding: 18px;
}

.person-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.person-role {
    font-size: 1rem;
    color: #c41e3a;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.person-bio {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

/* Resim yer tutucuları için (gerçek resimleri ekleyin) */
.person-image[src*="example.com"] {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
}




.kaynakca a {
  color: lightgrey;
}


ol > li { margin-top: 1rem;}

img
{
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}



@media (max-width: 1024px) {
.blog-post {
    flex-direction: column;
    }

.post-image {
    order: inherit;
}

.post-title {
    order: 2;
}

.excerpt {
    order: 3;
}
}

/* Social icons */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}


/*Blog Grid */

.blog-grid {
    display: flex;
    flex-direction: column;
}

.blog-post {
    display: flex;
    margin-bottom: 20px;a
    border-radius: 10px;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
}

.post-image {
    flex: 1;
}

.post-image img {
    width: 95%;
    height: auto;
    border-radius: 10px;
}

.post-details {
    flex: 2;
}

.post-title {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.post-meta {
    color: #888;
    font-size: 0.9rem;
}

.excerpt {
    font-size: 1rem;
}



@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blink {
  animation: blink 1s infinite;
  font-size: 1rem;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px; /* Adjust the spacing between cells as needed */
}

.custom-table img {
  max-width: 100%;
}

.custom-table td {
  padding: 10px; /* Adjust the padding inside each cell as needed */
  border: 1px solid #ccc; /* Add border around each cell */
  border-radius: 10px;
}

.custom-table, th, td {
 border: none;   
 table-layout: fixed;
}

.custom-button
{
 border-radius: 10px;
 font-size: 15px;
 background-color: #ff3333;
 font-weight: 800;
 color: white;
 border: none;
 height: 35px;
 cursor: pointer;
}

.custom-button:hover
{
 border-radius: 10px;
 font-size: 15px;
 background-color: blue;
 font-weight: 800;
 color: white;
 border: none;
 height: 35px;
}


 .read-more-section {
    margin-top: 50px; /* Adjust margin as needed */
    text-align: center;
  }

  .read-more-section h2 {
    margin-bottom: 20px; /* Adjust spacing as needed */
    font-size: 20px;
    font-weight: bold;
  }

  .article-cards {
    display: flex;
    justify-content: space-between;
    margin: 0 auto; /* Center the cards horizontally */
  }

  .article-card {
    margin: 10px; /* Adjust spacing between cards */
    text-align: center;
    width: 30%; /* Adjust card width as needed */
    background-color: #f2f2f2; /* Light gray background */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    transition: transform 0.3s; /* Add hover effect */
  }

  .article-card a {
    text-decoration: none; /* Remove underline from links */
    color: black;
  }

  .article-card img {
    width: 100%; /* Images take full width of card */
    height: 150px; /* Adjust image height as needed */
    object-fit: cover; /* Crop images to fit within container */
    border-radius: 5px;
  }

  .article-card h3 {
    margin: 10px 0; /* Adjust spacing between title and description */
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }

  .article-card p {
    margin-bottom: 10px; /* Adjust spacing between description and bottom */
    font-size: 12px;
  }

  .article-card:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
  }




.quote 
{
    border: 1px solid grey;
    border-radius: 10px;
    margin: 20px;
    padding: 30px;

}

.quote a
{
    text-decoration: underline;
    color: red;
}

.quote a:hover
{
    color: blue;
    font-weight: 700;
}



.quoteq
{
 margin-top: -50px;
 font-size: 5rem; 
 opacity: 0.4;
 font-family: 'Roboto', sans-serif;
 color: maroon;
 
}


.hrp
{
 font-size: 20px;
 font-weight: 700;
}


.hrh
{
    text-align: center;
}





.blog-column {
  flex: 1;
  margin: 0 10px; /* Adjust the spacing between columns */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid darkblue;
  position: relative;
}

.blog-column > category {
    font-size: 5px;
  
}

.image1 {
  border-radius: 10px 10px 0 0; /* Rounded top corners */
   position: relative;
}

.image1 img {
  width: 100%;
    display: block;
    border-radius: 10px;
}

.text1 {
    position: absolute;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff; /* Text color */
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
    transition: all 0.3s ease;
    text-align: center;
  }

  .text1 p {
    font-size: 12px;
    margin: 5px;
    font-weight: 600;
  }
  
  .categorystitle {
    font-size: 17px;
    margin: 5px;
    font-weight: 600;
  }

  


  .blog-column:hover .text {
    bottom: -50px; /* Move text up on hover */
  }

.toc
{

    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px;
}

.toc > ol > li 
    {
        margin-bottom: 10px; /* Add spacing between list items */
        font-size: 16px;

      
    }
    
    .toc > ol 
    {
    margin-left: 0; /* Remove default margin from the left */
      padding-left: 5px; /* Add padding for the list items */
    }





.arttitle
{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: -5px;
}


.artmeta
{text-align: center;
    font-size: 13px;
    color: grey;

}


.article-container {
    display: flex;
    justify-content: space-between;

}


  /* Additional styles for clarity */
  .sidebar5 h2, .blog-content h2 {
    font-size: 18px;
    margin-top: 0;
  }

  .sidebar5 hr {
    margin-bottom: 5px;
  }





.hr4
{
    width: 50px;
    background-color: darkblue;
    margin: 0;
    height: 2px;
}

.blog-listing {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.blog-listing {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}



.blog-entry {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  transition: border-color 0.2s; /* Add smooth transition */
  border: 2px solid transparent; /* Initially, set a transparent border */
  border-radius: 10px;
  padding: 5px;

}



.blog-entry:hover {
    border-color: lightgrey; /* Change border color on hover */
}


.blog-entry img {
  min-width: 300px;
  height: auto;
  margin-right: 20px;
  border-radius: 10px;
  
}


.blog-content {
  flex-grow: 1;
}

.category {
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #26bda7;
  display: inline-block;
  padding: 5px;
}

.categorybookies {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: darkblue;
  display: inline-block;
  padding: 5px;
}

.categorygezi {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: maroon;
  display: inline-block;
  padding: 5px;
}


.categoryanime {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: darkgrey;
  display: inline-block;
  padding: 5px;
}

.categorybetting {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #62929a;
  display: inline-block;
  padding: 5px;
}

.categorylife {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: darkorange;
  display: inline-block;
  padding: 5px;
}

.categorytarih {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: purple;
  display: inline-block;
  padding: 5px;
}

.categoryspor {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: darkgreen;
  display: inline-block;
  padding: 5px;
}

.categorypol {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #4B4280;
  display: inline-block;
  padding: 5px;
}

.categorysaglik {
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #00D3DB;
  display: inline-block;
  padding: 5px;
}

.categorytech {
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: silver;
  display: inline-block;
  padding: 5px;
}

.categoryhaber {
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #7DCDD0;
  display: inline-block;
  padding: 5px;
}

.categorys {
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: darkorange;
  display: inline-block;
  padding: 5px;
  font-size: 3rem;
}

.title {
  font-size: 1.2rem; /* Adjust title font size */
  margin-bottom: 10px;
}

.excerpt {
  margin-bottom: 20px;
}

.metadate {
    font-size: 14px;
    font-weight: 600;
    color: grey;
}


.logo
{
    position: absolute;
}

/* Footer */
footer {
  margin: auto;
  background: linear-gradient(to right, #494c64, #3f5dd4);
  padding: 50px;
  color: beige;
  display: flex; /* Add flexbox to center content */
  justify-content: center; /* Center horizontally */
}

/* Footer container */
footer > .container {
  width: 70%;
  display: flex; /* Ensure container respects flexbox */
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center items horizontally */
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%; /* Ensure full width to center properly */
}

.social-icon img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* Font Awesome icons (optional) */
.fab {
  font-family: FontAwesome; /* Replace with your Font Awesome path */
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.texton {
 color: white;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  width: 100%; /* Make the text span the full width of the container */
  background-color: rgba(255, 165, 0, 0.9); /* Adjust the alpha (opacity) value as needed */
  padding: 10px 0; /* Adjust padding as needed */
  border-radius: 5px;
}



#languageDropdown
     { font-family: 'Quicksand', sans-serif;
     background-color: inherit;
     color: beige;
     }




#gdpr-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  transform: translateY(100%); /* Initially hidden off-screen */
  transition: transform 0.3s ease-in-out;
  z-index: 999; /* Ensure popup is above other content */
}

#gdpr-warning.show {
  transform: translateY(0); /* Slide up to become visible */
}

#accept-cookies,
#decline-cookies {
  background-color: #4CAF50; /* Green color for accept */
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  margin: 5px;
}

#decline-cookies {
  background-color: #f44336; /* Red color for decline */
}

/* Optional: Style for the link within the warning message */
#gdpr-warning a {
  color: #007bff;
  text-decoration: underline;
}



article-h2 > h1 {
    text-transform: uppercase;
}

table, th, td {
  border: 1px solid grey;
  border-collapse: collapse;
  padding: 1rem;
}


.sidebar2 {
  position: fixed;
  left: 20px;
  bottom: 375px;
  transform: translateY(-50%);
  width: 200px; /* Adjust width as per your design */
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px;
  overflow-y: auto; /* Enable vertical scrolling */
} 


.new2 {
    display: none; /* Hide sidebar on small screens */
  }

.table3 {
    display: none; /* Hide sidebar on small screens */
  }

.main-content {
  margin-left: 240px; /* Adjust margin-left to accommodate the sidebar width */
}



div.article-post > div.read-more > ol {
    padding: 10px;
    display: flex;
}

.sitetitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 50px;
    margin: 0;
    color: beige;
}

.sitetitlef {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    margin: auto;
    color: beige;
}


ol.horizontal-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-bottom: 2rem;
  }
  ol.horizontal-list li {
    margin-right: 20px; /* Adjust spacing as needed */
  }
  
  
ol.horizontal-list li::marker {
    font-weight: 900;
    padding: 10px;
}  

.subtitle
{ font-size: 13px;
  border: 1px solid darkgrey;
  padding: 10px;
  width: fit-content;
  margin-bottom: -20px;
  color: grey;
}


.read-more {
    margin-top: 50px;
    margin-left: 10px;
    
} 

.read-more > ol > li {
list-style-type: auto;
list-style-position: inside;
min-width: fit-content;
font-weight: bold;
}

.read-more > ol > li > a {
    color: #e76f51;
    text-decoration: none;
    font-weight: 700;
    
}

/*pros grid*/

.pros-grid {
    margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns, each 1 fraction of available space */
  gap: 20px; /* Add spacing between grid items */
  
}


.pros-item {
    background-color: #D4F1CC;
    border: 1px solid green;
    border-radius: 10px;
  padding: 20px; /* Add padding to each grid item */
}

.pros-item2 {
    background-color: #FFDEAD;
    border-radius: 10px;
  padding: 20px; /* Add padding to each grid item */
  border: 1px solid orange; /* Optional: Add a border for better visualization */
}

.pros-item2 h3 {
  margin-bottom: 5px; /* Add space between title and list */
}

.pros-item h3 {
  margin-bottom: 5px; /* Add space between title and list */
}

/*pros*/

.pros {
    background-color: #94C973;
    border: 1px solid black;
    padding: 5px;
    border-radius 10px;
}

.cons {
    background-color: #FFDEAD;
    border: 1px solid black;
    padding: 5px;
    border-radius 10px;
}

/* warning box content */

.warning-box {
  background-color: #ffe0e0; /* Light red background for warning */
  border: 1px solid red; /* Red border */
  padding: 20px; /* Add some padding */
  margin: 0; /* Add some margin */
  border-radius: 10px; /* Add rounded corners */
  display: inline-block; /* Make the box appear inline with content */
}

/*ol list 1*/

  .ol-1 {
    list-style: none; /* Remove default list style */
    counter-reset: item; /* Reset counter for each list */
    margin-left: -25px;
    margin-bottom: 30px;
  }

  .ol-1 li {
    position: relative; /* Allow positioning of pseudo-element */
    font-size: 13px;
        margin-left: 2px !important;
  }

  .ol-1 li:before {
    content: counter(item) ". "; /* Set content using counter */
    counter-increment: item; /* Increment counter for each item */
    left: 0; /* Position it at the beginning */
    color: maroon; /* Set desired color */

  }

/* Breadcrumb */
.breadcrumb {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 4px 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  background-color: #fff;
  vertical-align: middle;
}

.breadcrumb-item {
  display: inline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: " > ";
  padding: 0 4px;
  color: #888;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.breadcrumb-item.active span {
  color: #aaa;
}




    .article-post {
        width: inherit;
        border: 1px solid #F2F2F2;
        border-radius: 10px;
        box-shadow: 1px 5px 5px -5px;
        background-color: #FAFAFA;
        padding: 20px;
    }
    
    .article-post > ol > p > a

    {
        color: red;
    }
    
    .article-post > ol > p > a:hover

    {
        color: blue;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    
    
    

    
    .subt {
        font-size: 15px;
        font-weight: 600;
    }
    

    .featured-img
    {
    margin:10px;
    }
    
    .featured-img > img
    
    {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    
    
        
    }
    
    .article-h2 { margin: 50px;}
    
    .meta > p {font-size: 12px;
        color: black;
        margin: 10px;
    }
    
    
    .article-write > h3 {
    margin: 10px;
    font-weight: 300;
    font-size: 13px;
    margin-top: 30px;
    }
    
    div.article-write > ol > li > a {
    margin: 10px;
    font-size: 13px;
    }    
    
    .article-inline
    {
    margin: 10px;
    }    
    
    .article-inline > p > a
    {
    color: #e76f51;
    text-decoration: underline;
    font-weight: 500;
    }
    
    
    .article-write
    {margin-top: 30px;
    margin-bottom: 30px;}
    


  /* Dropdown container */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100px; /* Fixed width */
    height: 60px;
        text-transform: uppercase;
    font-weight: 900;
  }

  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  

    /* Style for list items */
     body > article > div.sidebar > p > a  {
        position: relative; /* Needed for absolute positioning of pseudo-element */
        line-height: 30px; /* Adjust as needed */
        transition: padding-right 0.3s ease; /* Transition for smooth animation */
    }

    /* Pseudo-element for hover effect */
     body > article > div.sidebar > p > a::after {
        content: ' >>'; /* Symbol content */
        position: absolute;
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease; /* Transition for opacity change */
    }

    /* Hover effect */
    body > article > div.sidebar > p > a:hover::after {
        opacity: 1; /* Make the symbol visible on hover */
         margin-left: 5px;
    }

    /* Adjust padding to make room for the symbol on hover */
    body > article > div.sidebar > ol > li:hover {
        padding-right: 20px; /* Adjust as needed */
    }
  
  .navigation a {
      text-decoration: none; /* Remove default underline */
        transition: all 0.1s ease; /* Transition for smooth animation */
        color: beige;
        position: relative;

    }
    
    

    .navigation a:hover {
      color: white; /* Change text color to maroon on hover */
      text-decoration: none;
    }
    
.navigation a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; /* Adjust the height of the underline */
  bottom: 0;
  left: 0;
  background-color: beige; /* Set underline color */
  transition: width 0.3s ease; /* Control the speed of the animation */
}

.navigation a:hover::after {
  width: 100%; /* Expand underline on hover */
}
    
.plink
{
    color: red;
    text-decoration: underline;
}

.plink:hover {
    color:blue;
}

a {
   color: black; /* Default color */
        text-decoration: none; /* Remove default underline */
        transition: all 0.1s ease; /* Transition for smooth animation */

  }
  
  a:hover {
      color: maroon; /* Change text color to maroon on hover */
  }
  
      hr{
        height: 1px;
        background-color: lightgrey;
        border: none;
    }
    
    hr.new4 {
        height: 1px;
        background-color: lightgrey;
        border: none;
        margin-top: 50px;
        margin-bottom: 50px;
    }
  
    hr.new1 {
     border-top: 1px solid grey;
     width: 20%;
     margin-left: 0;
     margin-bottom: -5px;
}

hr.new2 {
     border-top: 1px solid lightgrey;
     height: 1px;
     margin-left: 0;
     margin-bottom: -5px;
     border: none;
}

hr.new3 {
     border-top: 1px solid lightgrey;
     height: 1px;
     margin-left: 0;
     margin-top: 40px;
     border: none;
}
    
    h5 {
      color: #e76f51; 
      font-size: 13px;
      margin-bottom: auto;
      font-weight: 900;
      margin-top: -3px;
    }
  
  .top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  color: white;
  font-weight: 900;
  text-shadow: 0 0 8px black;
}

    .container2 {
        position: relative;
        display: inline-block;
        
    }

  
    body > header > div > img { 
        padding: 10px;    
        
    }
  
  
    body {
      font-family: 'Quicksand', sans-serif;
      margin: 0;
      background: linear-gradient(to right, #494c64 , #3f5dd4);
      color: black;
    }

    .header {
      background-color: #f0f0f0;
      display: flex;
      justify-content: space-between; /* Space items evenly in header */
      margin: 0 auto; /* Center elements horizontally */
      justify-content: center;
            background: linear-gradient(to right, #494c64 , #3f5dd4);
    }

    .navigation {
      list-style: none;
      margin-top: 4rem;
      align-content: center;
      font-weight: 900;
      text-align: center;
    }

    .navigation li {
      display: inline-block;
      margin: 1rem;
    }

    

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: beige;
      min-width: auto;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border: 1px solid darkblue;
      border-radius: 10px;
    }

    .dropdown-content a {
      color: darkblue;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: darkblue;
      color: beige;
      
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    .sidebar-container {
  display: flex;
  flex-direction: column;

}

    .article-container {
      justify-content: center;
      width: 67%;
      margin: 2rem auto 2rem auto; /* Center elements horizontally */
    }
    
    .article-container-home {
      display: flex;
      width: auto;
      margin: 1rem auto 1rem auto; /* Center elements horizontally */
      justify-content: center;
    }
    
    .article-container-home > img {
      border-radius: 10px;
      width: 100%;
    }
    
    

    .content {
      flex: 2;


    }

    .sidebar {
      flex: 0.5;
      background-color: #F2F2F2;
      padding: 20px;
      margin-left: 10px;
      border-radius: 10px;
      height: fit-content;
      box-shadow: 1px 5px 5px -5px;
      display: none;
    }
    
    .sidebar5 > h2 {
      font-size: 15px;
      font-weight: 900;
    }

    .sidebar5 > p > img {
        border-radius: 50%;
        width: 30%;
    }
    

     .sidebar5 {
      width: 200px;
      min-width: 200px;
      max-width: 200px;
      border: 1px solid grey;
      padding: 20px;
      margin-left: 10px;
      border-radius: 10px;
      background-color: #F1F1F1;
      margin-bottom: 1rem;
    }
    
    .sidebar5 > ol > li 
    {
        margin-bottom: 10px; /* Add spacing between list items */
        font-size: 12px;
        font-weight: 700;
      
    }
    
    .sidebar5 > ol

    {
    margin-left: 0; /* Remove default margin from the left */
      padding-left: 20px; /* Add padding for the list items */
    }
    


    
/* Responsive Design */
@media screen and (max-width: 1024px) {
  .sidebar5 {
    display: none; /* Hide sidebar5 */
  }
  
  .article-container {
    justify-content: center;
    width: 90%;
    margin: 2rem auto 2rem auto;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}
  
}

@media screen and (max-width: 720px) {
  body > header > nav > ul {
    padding-inline-start: 0px;
  }
}
