/* 
        * {
            box-sizing: border-box;
        } */
        
        .calender-alignement{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
        }
        .kalender {
            display: flex;
            justify-content: center;
            /* align-items: center; */
            flex-direction: column;
            /* margin: auto; */
            /* height: 100vh; */
            user-select: none;
            /* box-sizing: border-box; */
        }
        ul {
            list-style-type: none;
        }
        
        .month {
            width: 100%;
            /* background-color: #35403e; */
            text-align: center;
        }
        .month-title{
            padding: 20px 20px;

        }
        
        .month .prev {
            padding: 20px 20px;

            float: left;
            cursor: pointer;
        }
        
        .month .next {
            padding: 20px 20px;

            float: right;
            cursor: pointer;
        }
        
        .month ul {
            margin: 0;
            padding: 0;
        }
        
        .month ul li {
            /* color: white; */
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 900;
        }
        
        .weekdays {
            margin: 0;
            padding: 10px 0;
            /* background-color: #ddd; */
        }
        
        .weekdays li {
            display: inline-block;
            width: 13%;
            /* color: #666; */
            text-align: center;
        }
        
        .days {
            padding: 10px 0;
            /* background-color: #eee; */
            margin: 0;
        }
        
        .days li {
            display: inline-block;
            width: 13%;
            text-align: center;
            margin-bottom: 5px;
            margin-top:10px;
            /* color: #777; */
        }
        .circle{
            height: 30px;
            width: 30px;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }
        .day-border{
            height: 30px;
            width: 30px;
            /* border-radius: 50%; */
            border: 3px solid var(--bs-primary);
            display: inline-block;
        }


        .hover-row{
            border-radius: 20px;
            border-style: solid;
            border-color: var(--bs-light);
            margin-left: 1px;

        }
        .hover-row:hover {
            border-radius: 20px;
            border-style: solid;
            border-color: var(--bs-secondary);
        }

        /* Not used anymore*/
        .active-hover{
            border-radius: 30px;
            border-style: solid;
            border-color: var(--bs-primary);
        }