body {
    font-family: Arial, sans-serif;
    background-color: #2596be; /* Updated background color */
}

#clear {
    margin-bottom: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

#clueSheet {
    display: flex;
    justify-content: space-between;
    background-color: #76b5c5; /* Updated background color for the clue sheet */
    padding: 20px; /* Optional: adds padding around the clue sheet */
    border-radius: 10px; /* Optional: adds rounded corners */
    /* Add other existing or additional styles as needed */
}

.categories-container {
    width: 65%; /* Adjust as necessary */
}

.category {
    margin-bottom: 20px;
}

.category h3 {
    background-color: #eeeee4;
    padding: 5px;
    color: rgb(226,135,67); /* Updated text color for section headings */
}

.category ul {
    list-style: none;
    padding: 0;
}

.category li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
    font-weight: bold;
    color: rgb(21, 76, 121); /* Updated font color for list items */
}

.item-text {
    width: auto; /* Adjust width as needed */
}

.marker {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    margin-right: 10px; /* Adjust for space between marker and text */
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.checked {
    background-image: url('checkmark.png');
}

.crossed {
    background-image: url('crossmark.png');
}

.questioned {
    background-image: url('questionmark.png');
}

.rules-section {
    width: 30%;
    margin-left: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rules-section h3 {
    margin-top: 0;
    color: #333;
}

.rules-section ul {
    list-style: inside square;
    padding-left: 20px;
}

.rules-section p, .rules-section ul {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}