/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafaf8;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

logo a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 32px;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    text-decoration: underline;
}

.home-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 600px;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
}

.whats-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: white;
    padding: 15px 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whats-new a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
}

.whats-new:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Products and Services Pages */
.content-main {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main h1 {
    color: #2d2d2d;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Blog Page */

.blog-div {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 40px;
}

.blog-video {
    padding: 10px;
    display: table;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-content {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 16px;
}

.blog-content > P {
    padding-top: 8px;
    padding-bottom: 8px;
}

.blog-grid {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-entry {
    background-color: white;
    padding: 30px;
    margin: 20px;
    min-height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.blog-entry:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.blog-entry a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.blog-description {
    padding-top: 20px;   
}

.blog-header {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}

.blog-table {
    width: 100%; /* Make the table span the full width of its container */
    border-collapse: collapse; /* Collapse borders between cells */
    margin-top: 10px; /* Add space below the table */
    margin-bottom: 1em; /* Add space below the table */
}

.blog-table th,
.blog-table td {
    border: 1px solid #ddd; /* Light gray border for cells */
    padding: 8px; /* Padding inside cells */
    text-align: left; /* Align text to the left */
}

.blog-table th {
    background-color: #f2f2f2; /* Light gray background for headers */
    font-weight: bold; /* Bold text for headers */
}

.blog-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Lighter background for even rows */
}

.blog-table caption {
    font-size: 1.2em; /* Larger font size for the caption */
    font-weight: bold; /* Bold caption text */
    margin-bottom: 0.5em; /* Space below the caption */
}

.blog-code {
    background-color: #e0e0e0;
    color: #333;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.85em;
}