body {
    font-family: 'Helvetica', sans-serif;
    margin: 20px;
    background-color: #F0F2F6;
}

.container {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;        /* center */
    margin-bottom: 20px;
    max-width: 960px;         /* limit width like concessions */
    width: 100%;
}

h1 {
    color: #2E294E;
}

/* Buttons */
button {
    background-color: #4C66AF; /* Blue */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

/* Anchor styled as button (Sign up links, etc.) */
a.btn, .btn {
    background-color: #4C66AF; /* Blue */
    border: none;
    color: white !important;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

table {
    max-width: 100%;
    border-collapse: collapse;
}

td, th {
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    border-bottom: 2px solid #2E294E;
    text-align: left;
}

td {
    font-size: 12px;
}

/* Table headers */
th {
    background-color: #4C66AF; /* Blue */
    color: white;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    width: 100px;
    text-align: right;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    margin-left: 15px;
}

.navigation {
    margin: 20px 0;
    text-align: left;
}

.navigation a {
    margin: 0 15px;
    text-decoration: none;
    background-color: #4C66AF; /* Blue */
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
}

.flash-message {
    font-weight: bold;
    font-size: 1.5em;
}

/* Duty table layout */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

.table th {
    background-color: #4C66AF; /* Blue */
    color: white;
}

/* Responsive */
@media (max-width: 800px) {
    .table {
        font-size: 12px;
    }
}
