.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    margin-right: 10px; /* Adjust as needed */
}

.slide img {
    max-width: 100%;
    height: auto;
}

/* Add background color to selected rows */
.selected-row {
    background-color: yellow; /* Change this to your desired highlight color */
}

.table-responsive {
    overflow-x: auto; /* Add horizontal scroll if needed */
    min-height: 300px; /* Adjust as needed to maintain height */
}

.table-responsive table {
    min-width: 100%; /* Maintain table width */
}

/*.table {
    table-layout: fixed; /* Fixed table layout to make columns evenly distribute available width */
    width: 100%; /* Make the table occupy the entire screen width */
}
/* Default font size */
.tornamnt-time h4 {
    font-size: 18px;
}

/* Media query for screens smaller than 768px wide */
@media (max-width: 768px) {
    .tornamnt-time h4 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}
.bg-blue {
    background-color: blue;
}
.tornment-start-info {
    background-color: #3498db;
}

*/
/*.table th, .table td {
    white-space: nowrap; /* Prevent text from wrapping to the next line */
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis; /* Add ellipsis (...) for text that overflows */
    padding: 8px; /* Adjust padding as needed */
}*/