/********** Template CSS **********/

/* Lato Regular mit geänderter Schriftgröße */
.normal-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 24px; /* Ändere die Schriftgröße hier */
}
.number-box {
                display: inline-block;
                width: 40px;
                height: 40px;
                background-color: #F4E2E7;
                text-align: center;
                line-height: 40px;
                margin: 5px;

                transition: background-color 0.2s ease-in-out;
        }
        .number-box.selected {
            background-color: #8A143B;
            color: white;
        }
        .number-box:hover {
            background-color: #8A143B;
            cursor: pointer;
            color: white;
        }