/* General Table Styles */
table {
    max-width: 80%;
    margin: 20px auto; /* Center tables with margin */
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    color: white;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.info-text {
    max-width: 80%;
	margin: 20px auto; /* Center tables with margin */
	padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

table th, table td {
    padding: 15px;
    border: 0px solid #ccc; /* Light gray borders */
    font-size: 1.1rem;
    vertical-align: top; /* Align content at the top */
}

table img {
    max-width: 180px;
	margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    pointer-events: none; /* Disable image clicks */
    user-select: none; /* Prevent image selection */
    -webkit-user-drag: none; /* Disable image dragging */
}

.rounded-img {
    border-radius: 13px / 16px; /* Rounded edges */
	padding-top: 5px;
	padding-bottom: 5px;
}

.effect-img {
    max-width: 80px;
	border-radius: 20px; /* Rounded edges */
	padding-top: 5px;
	padding-bottom: 5px;
}

.toplogo {
    max-height: 80px;
	max-width: 70%;
    pointer-events: none; /* Disable image clicks */
    user-select: none; /* Prevent image selection */
    -webkit-user-drag: none; /* Disable image dragging */
}

.add-info {
    font-size: 14px;
	color: rgb(200, 200, 200);
	margin: 2px;
}

th {
    background-color: rgba(255, 255, 255, 0.2); /* Slightly transparent white */
    font-weight: bold;
}

td {
	width: 180px;
	margin-left: auto;
    margin-right: auto;
}

tr {
	display: flex;
    flex-flow: row wrap;
}

/* Additional Styles for Buttons and Page Layout */
body {
    background-color: rgb(55, 55, 55);
    font-family: 'MedievalSharp', cursive;
	font-size: 20px;
    text-shadow: 1px 1px 2px black;
    margin-left: 8%;
    margin-right: 8%;
    padding: 1em;
    text-align: center;
    color: white;
}

a {
    color: rgb(180, 180, 180);
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
    color: white;
    text-align: center;
}

#buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#buttons a {
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#buttons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

button.buy-now {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 15px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2rem;
}

button.buy-now:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}