* {
    box-sizing: border-box;
}

body {
	background-color: #141414;
	
}

body,td,th {
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
}

.presentation, .container, .showData {
	margin: auto;
    width: 80%;
    padding: 20px;
}

.container {
	alignment-adjust:central
    border-radius: 5px;
    background-color: #444;
}

label {
    padding: 6px 6px 6px 0;
    display: inline-block;
}

select {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 2px;
    resize: vertical;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

input[type=button] {
    background-color: #4CAF50;
    color: white;
	padding: 6px 10px;
	border: none;
    border-radius: 2px;
    cursor: pointer;
    float: right;
	text-align:center;
	font-weight:bold;
}

input[type=button]:hover {
    background-color: #45A049;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .col-25, .col-75, {
        width: 100%;
        margin-top: 0;
    }
    input[type=button] {
        width: 40%;
        margin-top: 0;
    }
}

table {
    width: 100%;
	margin: auto;
    border-collapse: collapse;
}

table, td, th {
    border: 1px solid white;
    padding: 3px;
	color: white;
}

th {
	text-align: center;
	color: #F4CD1F;
}
td {
	text-align: left;
}

.tdcenter {
	text-align:center;
}

a:link {
    color: #4CAF50;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #F4CD1F;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: #F4CD1F;
    background-color: transparent;
    text-decoration: none;
}
