main {
    margin: 5px;
}

#raceListForm {
    max-width: 300;
}

#horseDetails {
    display: fixed;
    bottom: 5px;
    height: 200px;
    width: 100%;
}

.data-table {
    /* border-collapse: collapse; */
    /* border: 1px solid; */
    min-width: 800px;
    border-collapse: separate; /* Ensures borders don't collapse */
    border-spacing: 0; /* Removes gaps between cells */
    border: 1px solid #000; /* Table border */
    border-radius: 10px; /* Rounds the corners */
    overflow: hidden; /* Ensures content respects rounded corners */
    margin-bottom: 2px;
}

.data-table th, .data-table td {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}

/* .data-table th:nth-child(1) {
    width: 10%;
}
.data-table th:nth-child(2) {
    width: 40%;
}
.data-table th:nth-child(3) {
    width: 20%;
}
.data-table th:nth-child(4) {
    width: 20%;
}
.data-table td:nth-child(5) {
    width: 10%;
} */

.table-main-header{
    background-color: aqua;
}

.table-header {
    background-color: beige;
}

.clickable {
    cursor: pointer;
}

.scratched {
    text-decoration: line-through;
}