body {
            font-family: Arial, sans-serif;
            margin: 0;
            display: flex;
            justify-content: space-between;
        }

        h1  {
            margin-bottom: 6px;
        }

        #subhead {
            margin-top: 6px;
        }
        
        #description {
            font-size: 13px;
            margin-top: 6px;
        }

        .container {
            height: 100vh;
            width: 30vw;
            max-width: 600px;
            min-width: 400px;
            padding: 20px 20px 20px 40px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .grid-container{
            display: grid;
            grid-template-columns: 1fr 3fr;
            grid-gap: 10px;
        }

        .grid-container2{
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 10px;
        }

        .section-title {
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        .checkbox_style {
            margin-left: 0;
        }

        .radio_style {
            margin-left: -1px;
        }


        input[type="text"] {
            width: 75%;
            padding: 10px;
            margin-top: 5px;
            box-sizing: border-box;
        }

        /* #input-activ {
            color: black; 
            border: 1px solid black;
        } */

        .box-button{
            top: 50px;
            position: relative;
        }

        .button {
            display: inline-block;
            height: 55px;
            width: 160px;
            padding: 8px;
            margin: 10px 5px 10px 0px;
            text-align: center;
            cursor: pointer;
            font-size: 15px;
            border: none;
        }

        .button.generate {
            background-color: blue;
            color: white;
        }
        .button.save {
            background-color: lightgrey;
            color: black;
        }

        /* #save-activ {
            background-color: blue;
            color: white;
        } */


        .form-group {
            margin-bottom: 10px;
        }

        .poster-view {
            width: 100%;
            height: 100vh;
        }

        .iframe-style {
            width: 100%;
            height: 100%;
        }