/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    padding: 20px;*/
/*}*/

/*.container {*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*}*/

/*#plot-img {*/
/*    margin-top: 20px;*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/

/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    margin: 0;*/
/*}*/

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.checkbox-button {
    display: none; /* Hide the actual checkbox */
}

.checkbox-label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    flex: auto;
    padding: 1em;
}

.checkbox-button:checked + .checkbox-label {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.checkbox-label:hover {
    background-color: #ddd;
}

.checkbox-button:checked + .checkbox-label:hover {
    background-color: #45a049;
}
