body {
    font: normal normal 1em/1.625em Arial, sans-serif;
    width: 100%;
    text-align: center;
    margin: 0;
    color: #3C3C3B;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3C3C3B;
    padding: 10px;
    height: 50px;
}
header .logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: url("../Images/logo_innascor_small.svg") no-repeat center center transparent;
}
header h1 {
    color: white;
    margin: 0 70px;
    font-size: 1.5em;
    line-height: 50px;
}

section {
    padding: 70px 10px 20px 10px;
}
section table {
    margin: 20px 0;
    width: 100%;
    border: 1px solid #94C11F;
    border-collapse: collapse;
}
section table thead tr {
    background: #94C11F;
    color: white;
}
section table tbody tr:nth-child(odd) {
    background-color: white;
}
section table tbody tr:nth-child(even) {
    background-color: #eee;
}
section table th,
section table td {
    font-weight: normal;
    text-align: left;
    padding: 6px;
}

.author {
    width: 30%;
}
.year {
    width: 50px;
}
.action {
    width: 66px;
    white-space: nowrap;
}
.action a {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 4px;
}
.action a.edit {
    background: url("../Images/edit.svg") no-repeat center center transparent;
    background-size: contain;
}
.action a.delete {
    background: url("../Images/delete.svg") no-repeat center center transparent;
    background-size: contain;
}
.action a span {
    display: none;
}

.action-bar {
    height: 30px;
    padding: 10px 0;
}
.action-bar a.button.right {
    float: right;
}
a.button,
input[type=button],
input[type=submit] {
    border: 1px solid #94C11F;
    border-radius: 2px;
    background-color: rgba(148, 193, 31, 0.4025669642857143);
    color: #3C3C3B;
    padding: 4px 8px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
    line-height: 24px;
}
a.button:hover,
input[type=button]:hover,
input[type=submit]:hover {
    background-color: white;
}

form {
    padding: 20px 0;
}
form label {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    margin: 8px 0 0 0;
}
form input[type=text],
form input[type=number],
form textarea{
    display: inline-block;
    width: 100%;
    max-width: 500px;
    text-align: left;
    border: 1px solid #3C3C3B;
    padding: 5px;
    border-radius: 2px;
    font-size: 1em;
}

form input[type=text]:focus,
form input[type=number]:focus,
form textarea:focus {
    border: 1px solid #94C11F;
}
form textarea {
    font: normal normal 1em/1.625em Arial, sans-serif;
    height: 300px;
}