html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: white;
    width: 100%;
}
article {
    width:100%;
}
.table {
    cursor: pointer;

    border-radius: 5px;
    table-layout: fixed;
    width: 100%;
    word-break: break-word;
    border-collapse: collapse;
}
th {
    font-size: 2vh;
    margin: 0;
    padding:5px;
    width:100%;
}
td {
    font-size: 1.6vh;
    width: 100%;
}
tr {

    width: 100%;
}
.addForms {
    background-color: lightgreen;
    text-align: center;
    border:solid 1px;
    padding:10px;
    margin:10px;
}
textarea {
    width: 50%;
    height: 10vh;
    resize: none; /* Prevent manual resizing */
}

.editForms {
    background-color: lightgoldenrodyellow;
    text-align: center;
    border: solid 1px;
    padding: 10px;
    margin: 10px;
}
.plusButton {
    background-color: lightgreen;
}

.myButton {
    padding-left: 1vh;
    padding-right: 1vh;
    border-radius: 5px;
    margin: 2px;
    width: fit-content;
    min-width: 40px;
    min-height: 40px;
}

.minusButton {
    background-color: lightcoral;
}
.downloadButton {
    background-color: white;
    color: black;
    width: 300px;
    font-weight: bold;
    border: dotted;
    margin-bottom:2px;

}
#test {
    width:100%;
    text-align:center;
}
#search{
    width:30%;
    text-align:center;
    margin-top:10px;

}
#machine{
    display:;
}
#machineLabel {
    border-style: solid;
    border-radius: 0px;
    height: fit-content;
    width: 300px;
    top: 0px;
    margin-bottom: 1vh;
    text-align: center;
    line-height: 1;

}
    #machineLabel p {
        font-size: xx-large;
        font-weight: bold;
    }
#machineLabelView {
    width:100%;
    display: inline-grid;
    justify-content: center;
}
#machineTable {
    background-color: gainsboro;
    cursor: pointer;

    border-radius: 5px;
 

}


@media screen and (orientation:portrait) {

    th {

        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    test {
        display: grid;
        justify-content: center;
    }

} 
    
