/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #0d1f33;
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
}

/* Header Section */
.header {
    background-color: #0d1f33;
    color: white;
    padding: 20px 0;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

.header-nav {
    float: right;
    display: inline-block;
}

.header-nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}

/* Breadcrumb Section */
.breadcrumb {
    color: #666;
    margin-top: 20px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 40px 0;
    margin-top: 20px;
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

/* Left Content */
.left-content {
    width: 65%;
}

.left-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.updated {
    color: #666;
    margin-bottom: 20px;
}

.left-content p {
    font-size: 18px;
    line-height: 1.6;
}

.left-content a {
    color: #007bff;
    text-decoration: none;
}

.left-content a:hover {
    text-decoration: underline;
}

/* Right Sidebar */
.right-sidebar {
    width: 30%;
    background-color: #f8f9fa;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.right-sidebar h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.right-sidebar ul {
    list-style-type: none;
}

.right-sidebar ul li {
    margin-bottom: 10px;
}

.right-sidebar ul li a {
    color: #007bff;
    text-decoration: none;
}

.right-sidebar ul li a:hover {
    text-decoration: underline;
}






/* Title Styling */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* List Styling */
ul {
    margin: 20px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Highlighted Note */
.highlight {
    background-color: #e6f0ff;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

/* Image Styling */
.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-container img {
    width: 300px;
    height: auto;
    border-radius: 4px;
}





/* Image Styling */
.image-container {
    text-align: center;
    margin-bottom: 20px;
}

.image-container img {
    width: 400px;
    height: auto;
    border-radius: 4px;
}

/* Title and Description Styling */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Expandable Sections */
.expandable {
    margin-bottom: 20px;
}

.expand-toggle {
    font-size: 18px;
    color: #007bff;
    cursor: pointer;
}

.expand-content {
    display: none;
    padding: 10px;
    background-color: #f1f3f5;
    border-radius: 4px;
    margin-top: 10px;
}

.expand-content p {
    margin: 0;
}










/* Diagram Section */
.diagram-container {
    text-align: center;
    margin: 30px 0;
}

.diagram-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}


/* PDF Download Button */
.install-guide {
    text-align: center;
    margin-top: 40px;
}

.pdf-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.pdf-button:hover {
    background-color: #0056b3;
}





/* Related Articles Section */
.related-articles h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.related-articles ul {
    list-style-type: none;
    padding: 0;
}

.related-articles ul li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.related-articles ul li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
}

.related-articles a:hover {
    text-decoration: underline;
}

/* Feedback Section */
.feedback-section {
    background-color: #f1f3f5;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
}

.feedback-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.emojis {
    font-size: 30px;
}

.emojis span {
    margin: 0 15px;
    cursor: pointer;
}

.emojis span:hover {
    transform: scale(1.2);
}

.selected {
    font-size: 35px;
    transition: 0.3s;
    color: #007bff;
}

#feedback-response {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}



/* Footer Styling */
.footer {
    background-color: #404751; /* Dark grey background */
    padding: 20px 0;
    text-align: center; /* Center the logo */
}

.footer-logo img {
    width: 150px; /* Adjust the width of the logo as needed */
}

/* Container Styling */
.container {
    width: 85%;
    margin: 0 auto;
}
