.view-switch-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.bracket-container {
	display: flex;
	flex-direction: row;
	justify-content: left;
	overflow-x: auto;
	margin-top: 60px;
}

.round {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-left: 20px;
	padding: 10px;
	min-width: 200px;
}

.bracket {
	display: flex;
	flex-direction: column;       /* Stack text vertically */
	justify-content: center;      /* Center text vertically */
	align-items: center;          /* Center text horizontally */
	width: 240px;                 /* Fixed width for the bracket rectangle */
	max-height: 100px;             /* Maximum height for normal text handling */
	background-color: #f1f1f1;    /* Light background for brackets */
	border: 2px solid #ccc;       /* Light border around the bracket */
	border-radius: 5px;           /* Rounded corners */
	margin-bottom: 30px;          /* Space between brackets */
	padding: 5px;                 /* Internal spacing for text */
	text-align: center;           /* Center-align text inside the bracket */
	overflow-y: auto;             /* Enable scrolling vertically for long text */
	white-space: normal;          /* Prevent text wrapping issues */
	word-wrap: break-word;        /* Enable wrapping long words */
	box-sizing: border-box;       /* Include padding in size calculations */
	scrollbar-width: thin;        /* Make scrollbar thinner (Firefox) */
}

/* Optional: Custom scrollbar styling for better aesthetics */
.bracket::-webkit-scrollbar {
	width: 6px;                   /* Width of vertical scrollbar */
}

.bracket::-webkit-scrollbar-thumb {
	background-color: #bbb;       /* Color of scrollbar */
	border-radius: 3px;           /* Rounded scrollbar ends */
}


.table thead {
	background-color: #f1f1f1;
}

.tbd {
	color: #999;
	font-style: italic;
}

.round-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 10px 0;
    border-bottom: 1px solid #ccc; /* Optional visual separator */
}

.round-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    flex: 1; /* Push other elements to the right */
}

.finished-pending-info {
    margin-left: auto; /* Push to the right side */
    font-size: 14px;
    color: #888;
    white-space: nowrap; /* Prevent wrapping */
}

.search-section {
    margin-right: 10px;
}

.search-section input {
    max-width: 250px;
    height: 36px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.filter-section {
    margin-right: 10px;
}

.filter-section select {
    max-width: 200px;
    height: 36px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .round-heading {
        flex-direction: column; /* Stack elements vertically on small screens */
        align-items: flex-start; /* Align everything to the left */
    }

    .search-section,
    .filter-section {
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing between elements on small devices */
        width: 100%; /* Make input and dropdown full width */
    }

    .finished-pending-info {
        margin-left: 0;
    }
}
