body {
    background-color: rgb(53, 53, 53);
    color: #EEE;
}

#Content {
    width: 100%;
    max-width: 800px;
    min-height: 300px;
    margin: 0 auto;
    padding: 20px;
}

#Content input {
    box-shadow: 0 0 0 2px #273;
    border: none;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px 10px 0;
    box-sizing: border-box;
}

#Content input[type="button"] {
    padding: 10px;
    background-color: #273;
    color: #fff;
    cursor: pointer;
}

#Content input[type="button"]:hover {
    background-color: rgb(18, 107, 36);
}

#Content input[type="button"].c_yel {
    background-color: #ddcc22;
    box-shadow: 0 0 0 2px #ddcc22;
    color: #000;
}

#Content input[type="button"].c_yel:hover {
    background-color: #c2a60b;
}

#Content .prefill {
    color: #fff;
    gap: 5px;
}

#Content .prefill input[type="text"] {
    width: 100%;
    margin: 0;
    background: none;
    box-shadow: 0 0 0 1px rgb(204, 204, 204);
    color: #fff;
}

#Content .prebutton input[type="button"] {
    padding: 0;
    width: 32px;
    height: 32px;
    font-size: 20px;
}

#Content .table {
    display: none;
}

#Content table {
    border-collapse: collapse;
    font-size: 12px;
}

#Content table td {
    padding: 2px 5px;
    box-shadow: 0 0 0 1px #999;
}

#Content table td.borno {
    box-shadow: none;
    color: #999;
}

#exportModal input {
    padding: 10px;
    border: none;
    margin: 0 10px 10px 0;
    box-shadow: 0 0 0 1px #999;
    border-radius: 5px;
    box-sizing: border-box;
}

#exportModal input[type="text"] {
    width: 100%;
}

#exportModal input[type="button"] {
    background-color: #273;
    box-shadow: 0 0 0 1px #273;
    color: #fff;
    cursor: pointer;
}