body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
}
.content-wrapper{
    width: 100%;
    height: 728px;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/30064.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.inputs-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 20%;
    border: 1px solid black;
    border-radius: 15px;
    height: 500px;
    padding: 20px;
    background-color: #29629954;
}

.inputs-wrapper input{
    border-radius: 30px;
    border: 1px solid;
    background-color: transparent;
    outline: none;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 700;
}

.opacity{
    opacity: 0.4;
    z-index: -1;
}
.result-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 26px;
}
.result-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.history-data-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.history-data{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#operator{
    padding: 12px 5px;
    background-color: transparent;
    border: none;
    outline: none; 
    font-size: 20px;
    font-weight: 500;
}
#operator option{
    padding: 12px 5px;
    background-color:#29629954;
}
#operator:hover{
    cursor: pointer;
}
#submit{
    padding: 10px 0px;
    background-color: rgb(176, 202, 250);
    color: white;
    font-weight: 700;
    font-size: 20px;
    outline: none;
    border: none;
    border-radius: 30px;
   
}
.submit{
    box-shadow: -1px 13px 0px -5px  rgb(77, 77, 119);
}
.submit:active{
    box-shadow: -1px 7px 0px -5px  rgb(77, 77, 119);
    transform: translateY(4px);
}
.submit.active{
    box-shadow: -1px 7px 0px -5px  rgb(77, 77, 119);
    transform: translateY(4px);
}

#submit:hover{
    cursor: pointer;
    background-color:  rgb(138, 176, 246);
}
.result{
    font-size: 25px;
    font-weight: 700;
}
.delete-btn i{
    color: red;
    font-size: 25px;
}

.delete-message-container{ 
    width: 100%;
    position: absolute;
    z-index: 1;
}
.history-container{
    display: none;
}
.show-history i{
    font-size: 25px;
}
.show-history:hover{
    cursor: pointer;
}
.delete-message{
    width: 20%;
    border: 2px solid red;
    border-radius: 15px;
    color: red;
    font-weight: 700;
    position:relative;
    bottom: 200px;
    background-color:rgb(153, 152, 152);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.8s;
}
#input-display{
    font-size: 14px;
    height: 17px;
}
.delete-btn:hover{
    cursor: pointer;
    color: rgba(255, 0, 0, 0.776);
}
.confirm-pop-up-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    top: 40%;
    z-index: 1;
}
.confirm-pop-up{
    width: 25%;
    border: 2px solid black;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0px 5px 20px 0px #905757;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
}

.confirm-pop-up hr{
color: rgb(125, 124, 124);
width: 100%;
}
.confirm-pop-up .message-of-dlt{
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
margin: 0px 0px 0px 15px    
}
.confirm-pop-up p{
  font-size: 18px;
  margin: 18px 10px;
}
.cancel-btn{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2px 0px 15px;
}
.cancel-btn div{
    border: 1px solid rgb(212, 212, 96);
    background-color: rgb(212, 212, 96) ;
    padding: 5px 15px;
    border-radius: 10px;
}
.cancel-btn div:hover{
    cursor: pointer;
}
.animate{
    animation-name: animatezoom;
    animation-iteration-count: 1;
    animation-duration: 0.5s;
}
@keyframes animatezoom {
    0% {transform: scale(0);};
    100% {transform: scale(1);}
}
.confirm-buttons-wrapper{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 11px;
    margin: 0px 20px 10px 0px;
}
.confirm-buttons-wrapper div:hover{
    cursor: pointer;
}
.delete{
    color: white;
    font-size: 20px;
    background-color: rgb(240, 18, 18);
    border: 2px solid black;
    border-radius: 30px;
    padding: 5px 7px;
}
.delete:hover{
    background-color: rgb(248, 59, 59);  
}
.cancel{
    color:black;
    font-size: 20px;
    border: 1px solid black;
    background-color:rgb(189, 187, 187);
    border-radius: 30px;
    padding: 5px 7px;
}
.cancel:hover{
    background-color:rgb(138, 136, 136);  
}
@media (max-width:900px) {
    .inputs-wrapper{
        width: 70%;
    }
    .confirm-pop-up{
        width: 70%;
    }
    .confirm-pop-up p{
          font-size: 16px;
    }
    .confirm-pop-up h3{
        margin: 1px 0px 0px;
    }
    .confirm-buttons-wrapper{
        margin: 0px 20px 5px 0px;
    }
    .delete{
        padding: 0px 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cancel{
        padding: 0px 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .delete-message{
    width: 70%;
    }
}