

main {
    display: flex;
    flex-direction: row;
}

#interactions-form {
    display: flex;
    flex-direction: column;
    padding-left: .5rem;
    gap: .3rem;
}

form button {
    height: 2rem;
    width: 7rem;
    border: none;
    color:rgb(231, 244, 255);
    background-color: rgb(0, 150, 0);
    font-size: 1rem;
    font-weight: 600;
    border-radius: .3rem;
}

form label {
    margin-top: .3rem;
}

.interaction input {
    border-radius: .3rem;
    border-style: solid;
    border-width: 1px;
}

#load-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

#save-button {
    width: 7rem;
}

#load-button {
    width: 8rem;
}

.interaction-container {
    display: flex;
    flex-direction: row;
    border-color: black;
    border: 2px;
    align-items: center;
    padding: .2rem;
    padding-right: 1.5rem;
    background-color: rgb(247, 247, 247);
}

.interaction-active {
    background-color: rgb(240, 255, 240);;
}

.interaction-column {
    display: flex;
    flex-direction: column;
    /* width: 450; */
    padding: .5rem;
}

.btn-delete {
    background-color: rgb(150, 0, 0);
}

.video-container {
    visibility: collapse;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#video {
    transform: scaleX(-1); 
    -webkit-transform: scaleX(-1); 
    visibility: hidden;
}