body {
    font-family: Avenir, sans-serif;
    margin: 20px;
    background-color: #252415; /* Dark background */
    color: #f5f5dc; /* Light coffee color for text */
}

header {
    text-align: center;
    margin-bottom: 20px;
}
div {
  border: 1px thin #444;
  background-color: black;
  padding: 25px;
  margin-top: 50px auto;
  font-size: 12pt;

}

.title {
    font-size: 2em;
    margin: 0;
    color: #d2b48c; /* Tan color for the title, coffee tone */
}

.disclaimer {
    font-size: 0.9em;
    color: #b38b6d; /* Coffee brown for disclaimer */
    margin-top: 8px;
}

#product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    background-color: #3b3b3b; /* Slightly lighter than background for contrast */
    border: 1px solid #6f4e37; /* Coffee brown border */
    border-radius: 4px;
    padding: 10px;
    width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.product:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.7);
    border-color: #a0522d; /* Lighter coffee for hover border */
}

.product img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 2px;
}

h3 {
    font-size: 1.1em;
    margin: 0 0 8px 0;
    color: #d2b48c; /* Tan color for headings */
}

p {
    margin: 0;
    font-size: 0.9em;
    color: #f5f5dc; /* Light text for readability */
}
table {
  background-color: #000000;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 2px;
  border-collapse: collapse;
  margin-top: 0rem;

}

table th,
table td {
  width:98vw;
  border: 1px solid #000;
  padding: 8px;
  line-height: 30px;
  text-align: left;
  background-color: #000000;
  color:#f7f7f7;
}

table th {
  background-color: #977999;
  color: #070707;
}
th{
  background:#000000;
  color:white;
  padding: 5px;
}
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #666;
  background-color: #252525;
  color: #c9c9c9;
  text-align: center;
  margin-top: 10px;
  z-index: 5;
}



.small-print {
    font-size: 0.4em;
    color: #b38b6d; /* Coffee brown for footer text */
}
a {
    text-decoration: none;
    color: #d2b48c; /* Or any color you prefer */
}
