/*
// silveracorn.nz MXUI website - Version MX_2.1.1 - 5-Jul-2020
// MX version 3086
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 *
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     ../images/ - relative to this CSS file.
 */


/* GENERAL */
body {
    color:white;
}
table.indextable1 thead tr {
    background:#353535;
    height: 30px; 
}
table.indextable1 thead th {
    //border-right: 1px solid #ccc;
    color: #b2c831;
    font-size: 16px; 
}
//table.indextable1 thead th:last-of-type { border-right: none; }
table.indextable1 tbody {
    border-top: 1px solid #bbb;
    //border-bottom: 1px solid #bbb;
}
table.indextable1 tr.odd { background-color: #4f4f4f; }
table.indextable1 tr.even { background-color: #3f3f3f; }
table.indextable1 td { padding: 8px 10px; border-right: 1px solid #ccc; }
table.indextable1 td:last-of-type { border-right: none; }
table.indextable1 tbody tr:hover { background-color: #3071A9; }
