.prompt-history{
    display: none;
    height: 100vh;
    width: 98.5%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-top: 4px;
    background-color: white;
    margin-right: 4px;
    transition: .8s ease;
}
.prompt-history-head{
    padding-top: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom: 1px solid #C7C8C9;
}
.prompt-history-head h3{
    font-size: 1.5rem;
    font-family: inter;
}
.prompt-history-details{
    height: 100%;
    overflow-y: scroll;
}
.history-items{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #C7C8C9;
}
.history-items label{
    font-size: 1.2rem;
    font-family: inter-regular;
}
.history-items input{
margin-right: 1rem;
}