﻿/* Base table */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    text-align:left;
    align-items:flex-start;
}

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

/* Striped rows */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hover */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* Bordered table */
.table-bordered {
    border: 1px solid #dee2e6;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6;
    }

/* Small table */
.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

/* Table head colors */
.table thead.table-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table thead.table-light th {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Contextual rows */
.table-primary {
    background-color: #cfe2ff;
}

.table-success {
    background-color: #d1e7dd;
}

.table-danger {
    background-color: #f8d7da;
}

.table-warning {
    background-color: #fff3cd;
}

.table-info {
    background-color: #cff4fc;
}

.table-light {
    background-color: #f8f9fa;
}

.table-dark {
    background-color: #212529;
    color: #fff;
}

/* Responsive wrapper */
.table-responsive {
    overflow-x: auto;
}
.tr-primary{
    background-color:#0089cf;
    color:#fff;
}
.tr-secondary {
    background-color: #f0f9ff;
}
.li-numbers {
    list-style-type: decimal;
    margin-left:1rem;
}
.li-circle {
    list-style: circle;
    margin-left: 1rem;
}