body{
    position: relative;
}
.popup-container{
    visibility: hidden;
    position: fixed;
    justify-self: center;
    width: 100%;
    height: 100vh;
        z-index: 5;

    padding-top: 3vh;
    top: 0;
    background-color: rgba(182, 182, 182, 0.404);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
}
.popup{
    position: absolute;
    width: 70%;
    height: 95vh;
    background-color: rgb(243, 239, 239);
    border-radius: 1vh;
    box-shadow: 0 0 50px black;
}
.input-group{
    padding: 3vh;
    display: flex;
    column-gap: 1vw;
    align-self: center;
    
}
.input-group input{
    width: 80%;
    border: 1px black solid;
    border-radius: 1vw;
    padding: 2vh 2vw;

}
.input-group textarea{
    width: 80%;
    border-radius: 1vw;
}
.input-group label{
    align-self: center;
}
.buttons{
    display: flex;
    justify-content: space-evenly;
    padding-top: 4vh;
}
.buttons button{
    width: 40%;
    padding: 4vh 0;
    font-size:larger;
    border-radius: 1vw;
}
#Titre{
    margin-left: 7vh;
}
#montant{
    margin-left: 2.7vh;
}
#date{
    margin-left: 6.5vh;
}
#Description{
    margin-left: 1vh;
}
#Depense{
    background-color: red;
    box-shadow: 0 0 10px rgb(146, 0, 0);
    transition: color 0.3s linear;
    transition: background-color 0.3s linear;

}
#Revenue{
    background-color: green;
    box-shadow: 0 0 10px rgb(0, 255, 0);
    transition: color 0.3s linear;
    transition: background-color 0.3s linear;
}
#Revenue:hover{
    color: rgb(0, 198, 0);
    background-color: white;
}

#Depense:hover{
    color: red;
    background-color: white;
}

#confirm, #annule{
    transition: all 0.3s linear;
}
#confirm:active, #annule:active{
    box-shadow: none;

}
@keyframes bounce-up {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.link{
    animation: bounce-up 2s infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

#icon {
  position: fixed;
  font-size: 30px;
  pointer-events: none;
  transition: transform 0.05s linear; /* smooth movement */
}

@keyframes scale {
    0%{
        transform: rotate(0deg);
        scale: 0.5;
    }
    50%{
        transform: rotate(180deg);
        scale: 1;
    }
    100%{
        transform: rotate(360deg);
        scale: 0.5;
    }
    
}

.sban{
    animation: scale 1s infinite;
}



