body {
    font-family: Arial, sans-serif;
    background-color: #e0f2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	width: 1600px; /* Fixed width (adjust as needed) */
    min-width: 1600px; /* Prevents shrinking */	
    min-height: 100vh;
    margin: 0 auto;
    /* overflow-x: hidden; Hides horizontal scroll if content overflows */
}

h1 {
	text-align: center;
}

.container {
    width: 100%;
    max-width: 1600px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background-color: white;
    overflow: hidden;
	table-layout: fixed;
}

.styled-table th, .styled-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
	text-align: center; /* Centers text horizontally */
    vertical-align: middle; /* Centers text vertically */
	word-wrap: break-word;
}

.styled-table thead {
    background-color: #005686;
    color: white;
}

.styled-table td:empty {
    background-color: #333; /* Black */
}

.styled-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.styled-form label {
    font-weight: bold;
    color: #004080;
}

.styled-form input, .styled-form select {
    padding: 8px;
    border: 1px solid #005686;
    border-radius: 5px;
    width: 100%;
}

.styled-form button {
    background-color: #004080;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.styled-form button:hover {
    background-color: #002d5a;
}

.queue-box {
	background-color: #CEA36C;
	color: black;
	font-size: 2.2em;
	font-weight: bold;
	text-align: center;
	padding: 25px;
	margin-bottom: 50px;
	margin-top: 30px;
	border-radius: 8px;
	width: 100%;
}
.content-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.blocks-section {
	width: 65%;
}
.right-section {
	width: 33%;
}
.best-price-section {
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 40px;
}
.best-price-section h2 {
	font-size: 1.8em;
	font-weight: bold;
	margin-bottom: 40px;
}
.best-price-section h3 {
	margin: 12px 0;
}
.sold {
	background-color: #C00000;
	color: white;
	text-align: center;
	font-weight: bold;
}
.center-text {
	text-align: center;
}
.block-container {
	margin-bottom: 80px;
}
.highlight {
	background-color: #ffcc00 !important;
	font-weight: bold;
}
.best-price-table {
	width: 100%;
	border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);	
	border-radius: 6px;
	margin-bottom: 33px;
	background-color: white;
}
.best-price-table th, .best-price-table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
}
.best-price-table th {
	background-color: #005686;
	color: white;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
}