@media only screen and (max-width: 600px) {

    .container {
        width: calc(100% - 20px);
        padding: 10px 10px;
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        margin-top: 75px;
    }
    .container h2 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .button {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        color: white;
        background-color: #1985c4;
        text-align: center;
        padding: 12px 20px;
        border-radius: 4px;
        font-size: large;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        font-size: 1rem;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .input {
        width: 100%;
        padding: 12px 20px;
        margin: 8px 0;
        box-sizing: border-box;
        border: 2px solid #ccc;
        border-radius: 4px;
    }

    .hiddenobject{
        display: none;
        width: 0px;
        height: 0px;
    }

    .devicebox{
        display: flex;
        flex-direction: row;
        align-items: left;
        margin-top: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 3px;
    }

    .deviceboxleft{
        flex-basis: 50%;
        font-size: small;
    }

    .deviceboxright {
        font-size: x-small;
        flex-basis: 50%;
        text-align: right;
    }


    .fullfolder {
        color: gray;
        font-size: smaller;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .justify-right {
        justify-self: end;
    }
    
    .headerbutton {
        width: 50px;
        height: 50px;
        margin: 5px;
        cursor: pointer;
        border-radius: 8px;
        /* border: #5f5f5f solid 2px; */
        padding: 2px;
        transition: transform 0.2s;
    }
    .filterbutton {
        width: 40px;
        height: 40px;
        margin: 5px;
        cursor: pointer;
        border-radius: 8px;
        border: #5f5f5f solid 2px;
        padding: 2px;
        transition: transform 0.2s;
    }

    .linebutton {
        width: 20px;
        height: 20px;
        cursor: pointer;
        border-radius: 4px;
        transition: transform 0.2s;
    }

    .maintenance-record {
        padding: 10px;
        margin-bottom: 10px;
    }

    .maintenance-record h3 {
        margin: 0 0 10px 0;
    }

    .maintenance-record p {
        margin: 0;
    }

}