/* styles */


/* called by your view template */


/* btw vendor prefixes are added automatically */


/* You might want to try something fancier: */


/* less: http://lesscss.org/ */

* {
    box-sizing: border-box;
}

body {
    font-family: helvetica, arial, sans-serif;
    margin: 25px;
}

h1 {
    font-weight: bold;
    color: black;
}

.bold {
    font-weight: bold;
}

p {
    max-width: 600px;
}

p.pintable {
    margin: 0px;
}

form {
    margin-bottom: 25px;
    padding: 15px;
    background-color: white;
    display: inline-block;
    width: 100%;
    max-width: 340px;
    border-radius: 3px;
}

input {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    width: 50px;
    border: 1px solid lightgrey;
    border-radius: 3px;
    font-size: 16px;
}

button {
    font-size: 16px;
    border-radius: 3px;
    background-color: lightgrey;
    border: 1px solid grey;
    box-shadow: 2px 2px teal;
    cursor: pointer;
}

button:hover {
    background-color: yellow;
}

button:active {
    box-shadow: none;
}

table {
    border: 1px solid black;
    border-collapse: collapse;
    margin: 10px;
}

td {
    border: 1px solid black;
    height: 50px;
    min-width: 150px;
    padding: 5px;
    vertical-align: middle;
}


/*.unsichtbar {
  color: white;
}*/

@media print {
    .noPrint {
        display: none;
    }
}