
.form-container{
    margin-top: 2em;
    >.header{
        display: flex;
        justify-content: space-between;
        margin-bottom: 3em;
        >.infos {
            >h2{
                margin: 0;
                font-weight: 500;
                font-style: normal;
                font-size: 1.4em;
            }
            >p {
                margin: 0;
                font-weight: 500;
                font-style: normal;
                color: #7D7D7D;
            }
        }
    }
    >.form-content {
        width: 100%;
        max-height: 20em;
        display: flex;
        flex-direction: column;
        margin-left: 1em;
        overflow-x: auto;
        padding-bottom: 5em;
        >.header {
            display: flex;
            width: 90%;
            >.item {
                display: flex;
                justify-content: space-between;  
                margin-right: 5em;
                margin-bottom: 1em;
                flex-direction: column;
                >input, select {
                    border: none;
                    background-color: var(--background-color);
                    box-shadow: var(--shadow);
                    border-radius: 50px;
                    padding: 2px 8px;
                    width: 100%;
                }
            }
            >#numbering {
                margin-right: 5em;
                width: auto;
                margin-left: 1em;
            }
        }
        >.content {
            background-color: transparent;
            border-radius: 4px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            position: relative;
            align-items: flex-start;
            >.columns {
                background-color: var(--background-color);
                box-shadow: var(--depth);
                height: 90%;
                display: flex;
                flex-direction: column;
                >.column{
                    height: 5em;
                    display: flex;
                    align-items: center;
                    margin-right: 2em;
                }
            }
            >.columns#comments .column p {
                white-space: nowrap;
                overflow-x: auto;
            }
            >.columns#actions {
                background-color: var(--background-color);
                box-shadow: var(--depth);
                >.actions {
                    height: 5em;
                    width: 5em;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: relative;
                    cursor: pointer;
                    >.container {
                        position: absolute;
                        background-color: var(--contrast-color);
                        box-shadow: 0 0 #0000,0 0 #0000,0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)!important;
                        padding: 20px 10px;
                        border-radius: 4px;
                        top: 3.8em;
                        left: -1em;
                        z-index: 9;
                        >.option {
                            display: flex;
                            align-items: center;
                            >a {
                                white-space: nowrap;
                                margin: 0 0 0 5px;
                                user-select: none;
                                text-decoration: none;
                            }
                        }
                    }
                }
                >.actions.hidden .container {
                    display: none;
                }
                >.actions.show .container {
                    display: block;
                }
            } 
            >#numbering {
                width: 5em;
                margin: 0;
                padding-left: 1em;
            }
        }
    }
}