.hide-custom{
    display: none;
}

.rounded-custom{
    border-radius: 30px;
}

.carousel-container{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.w-95{
    width: 95% !important;
}

.selector-carousel-active{
    width: 100px;
    border-bottom: thick solid #6d5eac;
}

.bg-gradient-day{
    background: linear-gradient(0.25turn, #FD6570, #8377F3);
}

.bg-gradient-month{
    background: linear-gradient(0.25turn, #5CC1B4, #8377F3);
}

.bg-gradient-year{
    background: linear-gradient(0.25turn, #8377F3, #5CC1B4, #EC5685);
}

.menu-tile{
    width: 100%;
    min-height: 200px;
    border-radius: 30px;
    transition: transform 0.3s ease-in-out;
    color: white;
}

.menu-tile:hover {
    color: white;
    transform: scale(1.05); /* Agrandissement léger à 105% */
}

.menu-tile-icon{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 30px;
}

.menu-tile-scan{
    background-color: #8377F3;
}

.menu-tile-case{
    background-color: #FD6570;
}

.menu-tile-user{
    background-color: #5CC1B4;
}

.menu-tile-shop{
    background-color: #ee6e12;
}

.menu-tile-payment{
    background-color: gray;
}

.menu-tile-logout{
    background-color: #e0c930;
}

.btn-submit-scan{
    min-width: 30%;
    min-height: 40px;
    font-size: large;
}

.scan-card{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    background-color: white;
    color: white;
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border: thin solid rgb(226, 226, 226);
}

.scan-card-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.scan-card-content{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}
.scan-card-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6d5eac
}

.invalid .scan-card-header, .invalid .scan-card-content{
    background-color: #EC5685;
}

.valid .scan-card-header, .valid .scan-card-content{
    background-color:#5CC1B4;
}

.scan-card-icon{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 20px;
    margin-right: 20px;
}

.invalid .scan-card-icon{
    color: #EC5685;
}

.valid .scan-card-icon{
    color: #5CC1B4;
}

.btn-full{
    width: 100%;
    padding: 10px;
}

.nav-link{
    border: solid thin #6d5eac;
}

.nav-link.active{
    background-color: #6d5eac !important;
}

.modal-75{
    width: 75% !important;
}

.tag-badge{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border: solid thin #6d5eac;
    border-radius: 5px;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #6d5eac;
    color: white;
}