/*  -----   General   -----   */
body {
    background-color: #c9ccd1;
    color: #333;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

li {
    display: inline;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    min-height: 600px;
}

/* Table style begins*/

table, th, td {
    border: none;
    border-collapse: collapse;
    font-family: corbel, 'helvetica neue', 'trebuchet ms', arial, helvetica, sans-serif;
}

table {
    background: black;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

th {
    color: white;
    text-transform: uppercase;
    text-align: left;
}

td {
    padding: 0.5em 1em;
    background-color: #e5e5e5;
    vertical-align: top;
}

tr.odd th,
tr.odd td {
    background-color: #eee;
    color: #222
}

td,
th {
    border: none;
    padding: 3px 5px 10px 10px;
}

table a:link {
    color: black;
    display: inline-block;
    padding: 3px 7px;
}

table a:visited {
    padding: 3px 7px;
    color: #555;
}

table a:hover {
    text-decoration: none;
    background: black;
    color: white;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

::-moz-selection {
    background: #202020;
    color: white;
}

::selection {
    background: #202020;
    color: white;
}

table ::-moz-selection {
    background: white;
    color: #202020;
}

table ::selection {
    background: white;
    color: #202020;
}

/* End table CSS*/

/*  -----   Admin   -----   */

#menu li {
    margin: 5px 10px;
}

#menu li.first {
    margin: 5px 10px 5px 0;
}

#menu a {
    color: #025ccb;
    background-color: transparent;
    font-weight: bold;
    text-decoration: underline;
    padding: 3px;
}

#menu a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #025ccb;
    padding: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.category li {
    margin: 5px 10px;
}

.category li.first {
    margin: 5px 10px 5px 0;
}

li a {
    color: #025ccb;
    background-color: transparent;
    font-weight: bold;
    text-decoration: underline;
    padding: 3px;
}

li a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #025ccb;
    padding: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.green {
    color: green;
    font-weight: bold;
}

.red {
    color: red;
    font-weight: bold;
}

