.table {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.table tr td table {
    width: 100%;
    margin-bottom: 0;
    border: none;
    border-collapse: separate;
    border-radius: none;
}

.table thead {
    width: 100%;
}

.table tr.table-header {
    color: #fff;
    width: 100%;
}

.table tr.table-header td table tr {
    color: #fff;
    background-color: transparent;
}

.table tr.table-header th {
    padding: 10px;
    text-align: center;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
}

.table tr th,
.table tr td {
    text-align: center;
}

.table tr.table-header th.th-id,
.table tr th.td-id {
    width: 20px;
}

.table tr.table-header th.th-actions,
.table tr th.td-actions {
    width: 40px;
}

.table tr.table-row {
    background-color: #fff;
}

.table tr.even-row {
    background-color: #fcfcfc;
}

.table tr.table-row.off {
    background-color: #FCE5E5;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #F2CBCB;
}

.table tr.table-row.later {
    background-color: #FFF5C1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #DECB6F;
}

.table tr.table-row:hover {
    background-color: #FCF7DB;
}

.table tr td {
    padding: 6px 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ddd;
}

.table tr td table tr td {
    padding: 0 5px;
    border-top: none;
    border-bottom: none;
}

.table tr td.td-id {
    color: #CE6C48;
}

.table tr td.td-id.is-new-row {
    color: #fff;
    background-color: #58AD35;
}


/* Mini Table */

.table.mini-table {
    margin: 0;
    width: 100%;
    clear: both;
    border-spacing: 0;
    border-collapse: separate;
}

.table.mini-table tr.table-header {
    color: #fff;
    background-color: #333;
}

.table.mini-table tr.table-header th,
.table.mini-table.no-header tr.table-row th,
.table.mini-table tr.table-row td {
    padding: 5px;
    vertical-align: middle;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ddd;
}

.table.mini-table tr.table-header th.th-blank {
    background-color: #fff;
}

.table.mini-table.no-header tr th {
    color: #E3A236;
}

.table.mini-table tr.table-row td {
    color: #222;
}


/* Table Without Headr */

.table.mini-table.no-header tr.table-row td,
.table.mini-table.no-header tr.table-row th {
    padding: 8px;
}

.table.mini-table.no-header tr.first-row td,
.table.mini-table.no-header tr.first-row th {
    border-top: 1px solid #ccc;
}

.table.mini-table.no-header tr.table-row th {
    font-weight: bold;
}