* {
    font-family: Calibri;
    margin: 2px;
    padding: 1px;
}

html, body {
    width: 100%;
    height: 100%;
    background: white;
}

label {
    height: 2em;
    margin: 5px;
}

input {
    width: calc(100% - 20px);
    height: 2em;
    margin: 5px;
    padding: 5px;
    border: 2px solid burlywood;
    border-radius: 3px;
}

.inputInMain {
    width: calc(100% - 85%);
    height: 2em;
    margin: 5px;
    padding: 5px;
    border: 2px solid  burlywood;
    border-radius: 3px;
}

#sessionBox {
    color: black;
}

button {
    margin: 5px;
    padding: 5px;
    border: 2px solid  burlywood;
    border-radius: 3px;
    background:  burlywood;
    color: white;
    font-weight: normal;
}

.button-toLafett {
    margin: 5px;
    padding: 5px;
    border: 2px solid rgb(255, 212, 160);
    border-radius: 3px;
    background: rgb(255, 212, 160);
    color: white;
    font-weight: normal;
}

.button-toWall {
    margin: 5px;
    padding: 5px;
    border: 2px solid rgb(250, 201, 140);
    border-radius: 3px;
    background: rgb(250, 201, 140);
    color: white;
    font-weight: normal;
}

.button-toHouse {
    margin: 5px;
    padding: 5px;
    border: 2px solid burlywood;
    border-radius: 3px;
    background: burlywood;
    color: white;
    font-weight: normal;
}

#errorBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #e60000;
    margin: 5px;
}

#errorBox div {
    flex: 1;
    background: #ffe6e6;
    border-top: 1px solid #e60000;
    padding: 5px;
}

.l0g-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;   
    background: bisque;
    border-radius: 5px;
    margin: 5px;
    }


.l0g-details > div {
    margin: 1px;    
}

.detail-title{
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.detail-value {
    display: flex;
    justify-content: flex-start;
}


.l0gActivityLog-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;   
    background: bisque;
    border-radius: 1px;
    margin: 1px;
}

.l0gActivityLog-tableheader {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;   
    background: transparent;
    border-radius: 1px;
    margin: 1px;
}

.l0gActivityLog-details > div {
    margin: 1px;
}

.l0gActivityLog-title{
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.l0gActivityLog-value {
    display: flex;
    justify-content: flex-start;
}

#stepsListOnMain {
    display: grid;

    width: 100%;
    height: 100%;
    grid-template-areas: 
    ". stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain stepsOnMain ."
       

        
}

.stepsOnMain {
    display: grid;
    grid-template-columns: 1fr;   
    border-radius: 2px;
    margin: 2px;
}


@media (max-width: 1024px) {

    #stepsListOnMain {
        display: grid;
        width: 100%;
        height: 100%;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            " stepsOnMain "
    }

  
    .l0g-details {
        display: grid;
        grid-template-columns: 25% 5% 30% 5% 25% 10%;
        grid-template-rows: 20% 20% 20% 40%;
        grid-template-areas: 
        ". . . . . ."
        ". . . . . ."
        ". stepName-value stepName-value stepName-value stepName-value ."
        "editButton . . historyButton historyButton ." 
    }

    
    .editButton {
        grid-area: editButton;
    }

    .historyButton {
        grid-area: historyButton;
    }
    
    
/* 
    #container {
        grid-template-columns: 1fr;
        grid-template-rows: 100px 75px 100px auto 50px;
    }

    #header {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    #footer {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    #main-nav {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    #top-nav {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    } */
}
