/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #d3d3d3; /* Light gray body text */
    background-color: #000000; /* Black background */
}

/* Header and Navigation */
header {
    background-color: hsl(270, 75%, 35%); /* Updated purple */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    max-height: 60px; /* Updated from 50px per your change */
    margin-left: 1rem;
}

nav {
    flex-grow: 1; /* Allows nav to take available space */
    display: flex;
    justify-content: center; /* Centers the ul within nav */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #3498db; /* Blue hover effect */
}

.header-text {
    margin-right: 1rem;
    color: #d3d3d3; /* Matches body text */
    text-align: right;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem; /* Space for footer */
}

/* Inventory/Services Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem; /* Increased space above each table */
    margin-bottom: 2rem; /* Space below each table for separation */
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #d3d3d3; /* Light gray border */
}

th {
    background-color: #1a1a1a; /* Slightly lighter black for contrast */
}

.inventory-img {
    max-width: 100px; /* Limits image size, adjust as needed */
    height: auto;
}

h1 {
    margin-bottom: 1rem;
    color: #d3d3d3; /* Match body text */
}

h2 {
    margin-bottom: 1rem;
    color: #d3d3d3; /* Match body text */
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #000000; /* Match body background */
    width: 100%;
}