/* Reset some default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Apply a background color and font styles to the entire page */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Style the header with a background color, padding, and text styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the sections on the page with some padding */
.products, .about, .contact {
    padding: 20px;
}

/* Style the footer with a background color, text color, and center alignment */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px; /* Add margin to separate from other content */
}

.table th, .table td {
    border: 1px solid #b40a0a;
    padding: 8px;
    text-align: left;
}

.table th {
    background-color: #4e1919;
}

.table-bordered {
    border: 1px solid #412323;
}


 /* Define the normal and hover styles for the link */


a {
    color: #f8f8f8;
    text-decoration: none;
}