
.episode-conversation {
    height: 100vh;
    width: 600px;
    background-size: cover;
    background-position: left bottom;
    background-image: url(../assets/panel.webp);
    outline: 1pd dotted red;
    display: grid;
    grid-template-rows: 1fr minmax(0, auto);
}

.episode-conversation .restart {
    position: absolute;
    top: 3px;
    left: 5px; 
    width: 75px;
    margin: 5px;
    text-align: center;
    font-size: 20px;
    padding: 5px 10px;
    z-index: 10000;
}
.episode-conversation .history {
    overflow-y: auto;
    margin-left: 5px;
    background-color: rgba(0,0,0, 0.85);    
}
.episode-conversation .input {
    margin-left:5px;
    padding: 0px;
    -webkit-backdrop-filter: blur(2px);
    background-color: rgba(0,0,0, 0.85);

}
.episode-conversation .input-opacity-wrapper {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 100%);
    border-top: solid 4px rgba(209, 119, 103, 1);
    background: rgba(255, 242, 186, 0.75);
    backdrop-filter: blur(2px);
}
.episode-conversation .input .input-name {
    font-size: 18px;
    width: 100px;
    color: rgba(0,0,0, 0.75);
    font-style: italic;
}
.episode-conversation .input input {
    width: 100%;
    font-size: 18px;
    border: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: rgba(0,0,0, 0.75);
    background: rgba(0,0,0,0);
    padding: 20px;
    box-shadow: none;
    box-sizing: border-box;    
}

.restart.goals { display: none  }