  .checkbox2 {
        transition: background-color 0.3s ease; 
    }

    .checkbox2:hover {
        transform: scale(1.1); /* Increase the size on hover */
         background-color: #ffc107; 
        transition: transform 0.3s ease, background-color 0.3s ease;
        cursor: pointer; 
    }