/**
    https://stackoverflow.com/questions/11679567/using-css-for-a-fade-in-effect-on-page-load
 */

.customfade {
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
.editor {
    margin: 0 0 1.5rem 0;
}

.btn {
    border-radius: 2px;
}
i {
    margin-right: 10px;
}

.chatgpt-container {
    width: 350px;
    border-radius: 5px;
    position: fixed;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.7s, transform 0.7s;
    right: 0;
    bottom:0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
}
.chatgpt-container.active {
    transform: translateY(0);
    opacity: 1;
}
