body {
    font-family: Ubuntu, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, select {
    width: 300px;
    padding: 10px;
    margin: 5px 0;
    margin-right: 10px;
    background-color: #4d4d4d;
    color: #ffffff;    
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Consolas, monospace;
}

.navbar {
    background-color: #0dc713;
    position: sticky;
    top: 0;
    display: inline;
    height: 60px;
    width: 100%;
    text-indent: 10px;
}

.navbar h1{
    font-size: 1.5rem;
}

.navbar button {
    position: absolute;
    right: 20px;
    top: 5.25px;
    padding: 10px 20px;
    background-color: #fe0000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.main-content {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-container {
    min-width: 70%;
}

button {
    padding: 8px 16px;
    margin: 5px 0;
    background-color: #4d4d4d;
    color: #ffffff;    
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button:hover {
    background-color: #3a3a3a;
}

table {
    width: 80%;
    margin-top: 20px;
    border: 20px;
    border-collapse: collapse;
    text-align: center;
    background-color: #1c1d22;
}

th{
    font-size: 1.2rem;
    padding: 10px;
}

td{
    font-family: Consolas, monospace;
    padding: 10px;
}

td.out{
    color: #0dc713;
}

td input{
    font-family: Consolas, monospace;
}

textarea{
    background-color: #4d4d4d;
    color: #ffffff;
    width: 90%;
    min-height: 100px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

a {
    color: #a2a7ad;
    text-decoration: none;
}

a:hover {
    color:#e97600;
    text-decoration: underline;
}