body {
    font-family: sans-serif;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    }

header {
    padding-left: 10px;
    padding-right: 10px;
    }

.wrapper {
    display: grid;
    grid-template-columns: 250px, 800px;
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    }
            
.left {
    grid-column: 1;
    grid-row: 1;
    /*border: 1px solid gray;*/
    padding: 10px;
    max-width: 250px;
    min-width: 250px;
    }
     
.right {
    grid-column: 2;
    grid-row: 1;
    /*border: 1px solid gray;*/
    padding: 10px;
    max-width: 800px;
    min-width: 800px;
    }


.flash {
    font-size: small;
    color: red;
    margin-bottom: 10px;
    }

    
.note {
    border: 1px solid gainsboro;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    }

.form_with_border{
    margin-top: 30px;
    margin-bottom: 50px;
    }
     
textarea {
    width: 99%;
    }
        
table {
    margin-bottom: 15px;
    }
    
a {
    text-decoration: none;
    color: blue;
    }
    
a:hover {
    text-decoration: underline;
    }
    
a:visited {
    color: blue;
    }
    
.user_list {
    border-collapse: separate;
    border-spacing: 25px 0;
    }
    
.user_list tr:first-child {
    font-weight: bold;
    }
    
.user_list tr:not(:first-child) td:nth-child(1),
.user_list tr:not(:first-child) td:nth-child(3),
.user_list tr:not(:first-child) td:nth-child(4),
.user_list tr:not(:first-child) td:nth-child(5) {
    text-align: center;
    }

