#chores_thermometer_container {
    margin: 20px auto;
    max-width: 800px;
}
#chores_thermometer {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
#chores_thermometer th, #chores_thermometer td {
    border: 1px solid #333;
    text-align: center;
    padding: 10px;
    position: relative;
}
#chores_thermometer th {
    background: #4caf50;
    color: white;
}
#chores_thermometer .chores_green {
    background: #4caf50;
}
#chores_thermometer .chores_red {
    background: #ff6b6b;
    cursor: pointer;
}
#chores_thermometer .chores_black {
    background: #333;
    color: white;
    cursor: pointer;
}
#chores_thermometer .chores_tooltip {
    visibility: hidden;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.9em;
}
#chores_thermometer td:hover .chores_tooltip {
    visibility: visible;
}
#chores_thermometer_label {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}
#chores_user_tasks table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
#chores_user_tasks th {
    background: #4caf50;
    color: white;
    padding: 12px;
}
#chores_user_tasks td {
    padding: 12px;
    border: 1px solid #ddd;
}
#chores_user_selector {
    margin: 10px 0;
}
#chores_add_task_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
#chores_add_task_modal .modal_content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
#chores_add_task_modal select, #chores_add_task_modal button {
    padding: 10px;
    margin: 5px;
    font-size: 1em;
    border-radius: 5px;
}
#chores_add_task_modal button {
    background: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
}
#chores_add_task_modal button:hover {
    background: #45a049;
}
@media (max-width: 600px) {
    #chores_thermometer td {
        padding: 5px;
        font-size: 0.9em;
    }
    #chores_user_tasks table {
        font-size: 0.9em;
    }
    #chores_add_task_modal .modal_content {
        width: 90%;
    }
}