

table {
    width: 100%;
    
  }
table th {
    text-align: center;
}

table .small {
    width: 90px;
}
table .actions {
    text-align: right;
}
table img {
    width: 24px;
}

th img {
    width: 14px;
}



form select{
    display: inline;
}


form input{
    width: 80%;
}
form input[type=image]{
    width: 24px;
}

form input[type=checkbox]{
    display: inline;
    width: 24px;
    height: 24px;
}

form input[type=date]{
    width: 130px;
}

form .descripcio {
    width: 300px;
}

form .comentaris {
    width: 480px;
}


form .cp {
    display: inline;
    width: 20%;
}
form .smallField {
    display: inline;
    width: 80px;
}
form .smallDateField {
    width: 80px;
}

form .mediumField {
    display: inline;
    width: 120px;
}

form .poblacio {
    display: inline;
    width: 56%;
}


form textarea {
    display: block;
    padding: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    border-width: 1px;
    border-style: solid;
    width: 80%;
}
form textarea.small {
    height: 64px;
}
form textarea.large {
    height: 128px;
}
form .error {
    color: red;
}
@media (max-width: 599px) {
    form textarea {
        width: 80%;
    }
}
form textarea {
    background: #fff;
    color: #000;
    border-color: #ddd;
}

class error {
    background-color: #ff0000;
}
@media (prefers-color-scheme: dark) {
    
    
     form textarea {
        background: #000;
        color: #fff;
        border-color: #222;
    }
    
    table img {
        -webkit-filter: inver(1);
        filter: invert(1);
    }

    th img {
        -webkit-filter: inver(1);
        filter: invert(1);
    }


}


