body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    margin:0;
}

header{
    background:#293c8f;
    color:white;
    padding:15px;
}

nav{
    background:#00af50;
    padding:10px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-right:20px;
    font-weight:bold;
}

/*
.content-container{
    width:95%;
    max-width:1200px;
    margin:20px auto;
    background:white;
    padding:20px;
    border-radius:6px;
    box-shadow:0 0 8px rgba(0,0,0,.15);
}
*/
table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

th{
    background:#003366;
    color:white;
}

th,
td{
    border:1px solid #cccccc;
    padding:10px;
    text-align:left;
}

tr:nth-child(even){
    background:#f3f3f3;
}

tr:hover{
    background:#e9f3ff;
}

/* ===========================
   Login Page
=========================== */

.login-container{
    width:400px;
    margin:75px auto;
    background:#ffffff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 0 15px rgba(0,0,0,.15);
}

.login-container h2{
    text-align:center;
    margin-top:0;
}

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:5px;
    font-weight:bold;
}

input[type=text],
input[type=password],
input[type=email]{

    width:100%;
    padding:10px;

    border:1px solid #cccccc;

    border-radius:4px;

    box-sizing:border-box;
}

button{

    background:#003366;

    color:white;

    padding:12px;

    width:100%;

    border:none;

    border-radius:4px;

    cursor:pointer;

    font-size:16px;
}

button:hover{

    background:#005599;

}

.notice{

    background:#fff3cd;

    border:1px solid #ffeeba;

    padding:12px;

    margin-top:20px;

    border-radius:5px;

    font-size:.9em;
}