﻿
/*
    -- CT
    -----
    -- Generic styling of Custom Tables
*/

div.ct-item-active
{
    border: 1px solid Green;
    border-radius: 6px;
    background-color: white;
    margin: 5px;
    padding: 5px;
}

.ct-item-inactive {
    border: 1px solid Red;
    border-radius: 6px;
    background-color: #d9d9d9;
    margin: 5px;
    padding: 5px;
}

.ct-title, .ct-title a
{
    font-size: 18px;
}

.ct-subtitle
{
    font-size: 18px;
}

.ct-label { font-weight: bold; }

/* BUTTONS */
/* ------- */

.ct-button {
    background-color: #D7E3ED;
    border: 1px solid #5D88B2;
    color: #0E3A6F;
    display: inline-block;
    padding: 2px 4px;
    text-decoration: none;
    margin: 2px;
}


.ct-button:hover {
    background-color: #5D88B2;
    border-color: #0E3A6F;
}
