body {
    text-align: center;
    margin: 0;
    padding: 0;
}

.mainframe {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    padding-top: 100px; /* Space for fixed header */
}

.contentxy {
    font-size: 130%; /* Default font size */
    margin: 0 auto;
    width: auto;
}

.contentxy table {
    border-collapse: collapse;
    width: 100%; /* Make the table width 100% to fill the container */
    margin: 0 auto;
}

.contentxy th,
.contentxy td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    width: auto; /* Allow the cells to adjust automatically */
}

.contentxy tr:nth-child(even) {
    background-color: #f2f2f2;
}

.slidecontainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; /* Background color for fixed header */
    z-index: 1000; /* Stays on top */
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: shadow for visibility */
}

/* Styles for selected row */
.selected {
    background-color: #d1e7dd; /* Highlight color */
}

.selected .select-cell {
    background-color: #66bb6a; /* Color for selected indicator */
}

#wordTable tr {
    cursor: pointer; /* Pointer cursor on row */
}
