body {
    font-size: 10pt;
    font-family: 'Avenir LTD Std', Helvetica, Arial, sans-serif;
    background: #636366;
}

button {
    overflow: hidden;
    padding: 20px 40px;
    width: auto;
    margin-top: 15px;
    background: #82BC41;
    color: white;
    border-radius: 4px;
    font-family: 'Avenir LTD Std', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    letter-spacing: 1px;
    width: 100%;
}

button:hover {
    background-color: #636366;
}

.container { 
    margin: 20px auto; 
    width: 100%;
    max-width: 500px;
    background-color: #f6fafd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.1);
}

.container > .header {
    background-color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
}

.container > .header > img {
    display: block;
}

.container > .header > h1 {
    display: block;
    font-size: 14px;
    color: #636366;
}

table {
    padding: 20px;
    width: 100%;
}

table th {
    text-align: left;
    width: 170px;
}

table th, table td {
    padding: 5px;
    font-size: 10pt;
    color: #636366;
}

input[type=text] {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
    color: #636366;
}