/*
 * A CSS file for laying out our table editor
 */

.table-editor table {
    border: 1px solid #7BA0CD;
}


.table-editor th, .table-editor td {
    border-top: 1px solid #7BA0CD;
    border-bottom: 1px solid #7BA0CD;
    padding: 3px;
}

.table-editor th {
    background-color: #4F81BD;
    color: white;
    border-left: 1px solid #7BA0CD;
    border-right: 1px solid #7BA0CD;
}


.table-editor .odd, .table-editor .odd .field input {
    background-color: #D3DFEE;
}

.table-editor .even {
    background-color: white;
}

.table-editor table  .field input {
    border: 1px solid #444444;
}

.table-editor table .field input:hover {
    background-color: yellow;
    color: black;
}

.table-editor .controls {
    margin: 10px 0px;
}