﻿table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}

    table.nopadding td {
        padding: 5px !important;
    }

    table.nopadding th {
        padding-bottom: 0 !important;
    }

    table.rightaligned th {
        text-align: right;
    }

    table.rightaligned td {
        text-align: right;
    }

    table.rightaligned input {
        text-align: right;
    }




th.money {
    text-align: right;
}

table.bordered tr {
    border-bottom: 1px solid #d0d0d0;
}

table.striped tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

table.clickable thead th {
    cursor: pointer;
}

table.clickable tbody td {
    cursor: pointer;
}

table.hoverable tbody tr {
    -webkit-transition: background-color 0.25s ease;
    -moz-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

    table.hoverable tbody tr:hover {
        background-color: #f2f2f2;
    }

    table.hoverable tbody tr.nohover:hover {
        background-color: white !important;
    }

table.doublehover tbody:hover {
    -webkit-transition: background-color 0.25s ease;
    -moz-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
    background-color: #f2f2f2;
}

table.centered thead tr th, table.centered tbody tr td {
    text-align: center;
}

thead {
    border-bottom: 1px solid #d0d0d0;
}

th {
    font-weight: bold;
}

td, th {
    padding: 15px 5px;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    border-radius: 2px;
}
