:root {
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --primary-color: #00ADEF;      /* Sky Blue - Main theme color. Headings, primary buttons, hyperlinks */
  --secondary-color: #FCCE06;    /* Bright Yellow - Secondary actions. Secondary buttons, highlights */
  --accent-color: #0077C8;       /* Deep Blue - Hover effects, highlights */
  --success-color: #4CAF50;      /* Green - Success indicators, badges */
  --warning-color: #FFA500;      /* Orange - Warnings, alerts */
  --error-color: #FF4D4D;        /* Red - Error messages, alerts */
  --text-color: #444B54;         /* Dark Gray - Main body text */
  --text-light-color: #6C757D;   /* Lighter Gray - Secondary text */
  --background-color: #FFFFFF;   /* White - Main background */
  --light-background-color: #F2F5F8; /* Light Grayish Blue */
  --border-color: #DDE3E8;       /* Soft Gray - Borders, dividers */
}
#blog_post_results .attachment-post-thumbnail,#blog_post_results .size-post-thumbnail,#blog_post_results .wp-post-image{
    max-height:264px;
    height: auto;
}
.archive_manual_results{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
  padding: 50px 20px;
  align-items: stretch;
  margin-bottom:60px;
  gap:1vw;
}
.archive_manual_post {
  padding: 15px 12px;
  text-align: center;
  max-width: 250px;
  border-radius: 5px;
  transition: all 0.3s ease; /* Smooth transitions */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle default shadow */
  cursor: pointer; /* Adds pointer cursor to indicate interactivity */
  flex: 1 1 calc(100% - 16px); /* Full width */
  box-sizing: border-box; /* Ensure padding and border are included in width */
  background-color:white;
  margin-bottom: 8vw;
}

.archive_manual_post:hover {
  border: 1px solid var(--accent-color); /* Highlight border with theme color */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Elevate shadow */
  transform: translateY(-5px); /* Slight lift */
}

.archive_manual_post p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-color); /* Default text color */
  transition: color 0.3s ease; /* Smooth color transition */
}

.archive_manual_post:hover p {
  color: var(--accent-color); /* Change text color when card is hovered */
}
.archive_manual_post .post-thumbnail {
  width: 100px;
  height: 100px; /* Fixed dimensions for the container */
  margin: 0 auto; /* Centers the container horizontally */
  overflow: hidden;
  border-radius: 8px; /* Optional: rounded corners */
  display: flex; /* Flexbox for image alignment */
  justify-content: center;
  align-items: center;
}

.archive_manual_post .post-thumbnail img {
  width: 100%; /* Ensures the image scales to the container */
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}
.archive_post_title{
  margin-top:15px;
  font-weight: 600;
  font-family: var(--font-heading);
  color:var(--text-color);
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.archive-thumbnail-appliance-icon{
  font-size:80px;
  color:var(--primary-color);
}
.thumbnail-placeholder {
  color:var(--secondary-color);
  font-size:80px;
}
/* Single Sidebar Left end */
#post_detailed_content img{
  padding-top:30px;
  padding-bottom: 30px;
}
#blog_post_results{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
  padding: 20px;
}
.blog_post{
  padding: 30px 5px;
  text-align: center;
  max-width: 400px;
}
.blog_post h2{
  text-align: center;
  margin-top: 20px;
}
.blog_post p{
  font-size: 14px;
}
/*
Toggle Styles
*/
.faq-accordion {
  margin-top: 30px;
  margin-bottom:30px;
  border-bottom: 1px solid var(--border-color);
}

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 25px 15px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items:flex-start;
  transition: background-color 0.3s ease;
  background-color: var(--background-color);
  color:var(--text-color);
}

/*
.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: none;
}
  .faq-toggle:hover {
  background-color: var(--text-color);
}
*/
.faq-toggle:hover {
  background-color: #eefdfc;
}
.faq-title {
  font-size:1.5rem;
}
.fag-title-heading{
  background-color: var(--light-background-color);
  letter-spacing: 1.5px;
  border: 1px solid var(--primary-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq-icon {
  font-size: 14px;
  font-weight: bold;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  margin-top:5px;
  cursor:pointer;
}
.faq-icon:hover {
  color: var(--hover-color); /* Slightly darker orange or teal */
  transform: translateX(2px);
}
.faq-content {
  display: none;
  padding: 15px;
  background-color: var(--light-background-color);
  color: var(--text-color);
  font-size:1.1rem;
  border-top:none;
}

/* PDF Manuals Table Start */
table{
  font-family: Inter, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top:20px;
 margin-bottom:20px;
 text-align: center;
}
th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #00adef;
  color: white;
}
td, th {
  border: 1px solid #ddd;
  padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}

/* PDF Manuals Table End */
.search_results_message{
  text-align: center;
  padding: 60px 30px;
}
.mobile_menu a{
    font-size:18px;
}
.mobile_menu li{
    margin-bottom:15px;
    margin-top:9px;
}
.tick_list{
  text-align: left;
}
.icon-tick{
margin-bottom: 8px;
}
.table_row:nth-child(even){
    background-color: #f2f2f2;
  }
.table_row{
display:flex;
flex-direction:column;
justify-content:flex-start;
padding:8px 15px;
}
.table_header{
  background-color:#00adef;
  color:white;
}
textarea,input[type=text],input[type=email],input#author,input#email{
  padding:8px 15px;
  background-color:#f6f6f6;
  border:1px solid grey;
  outline:none;
  color:black;
  font-size:14px;
  display:flex;
  justify-content:center;
  width: 100%;
}
/* pagination styles */
.pagination{
  text-align: center;
  padding: 20px;
}
.page-numbers{
  padding:4px;
}
.nav-links .page-numbers{
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
 color: #212934;
  padding-bottom:25px;
}
.nav-links .next,.nav-links .current{
  color:#fcce06;
}
.anchor-adjust {
  scroll-margin-top: 10vh;
}
/*
Footer Styles Start Here
*/
#footer-links{
    background-color:#d7f3f1;
    padding:0 20px 80px 20px;

}

#footer-links a{
    display:block;
    margin:15px auto;
    color: #080e7b;
}
#footer-links a:hover,#footer-links a:active{
    color: #dd5f56;
}
#copyright{
  text-align: center;
  font-size: 12px;
  background-color: #00adef;
  color:white;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.copyright_padding{
    padding:10px 15px;
}
.ficon{
    color:white;
   margin-right:15px;
}
/*
Footer Styles End Here
*/

/*
Responsive CSS start
*/
@media (max-width:600px) {
#footer-links,#footer-links .col-4{
    text-align:center;
    align-items:center;
}
}
.col-3{
  padding: 7vh 3vh;
  width:100%;
}
@media(min-width:900px){

  .col-3{
      flex-direction:row;
      flex:33%;
    }
#blog_post_results{
  flex-direction: row;
  padding: 30px;
}
#footer-links{
 flex-direction: row;
 width: 100%;
}
.table_row{
flex-direction:row;
}
.table_col{
      width: 25%;
      padding: 8px 15px;
    }
}
