﻿:root {
    /* Mother Truckers*/
    --pc: #bf9000; /* Gold */
    --pc2: #086972; /* Teal */
    --pc3: #7B1315; /* Dark Red */
    --pc4: #D8D8D8; /* Gray */
    --accent: #838FA2;
    --light: #F5F5F5;
    --dark: #766E6A;
}

.html {
    min-height: 100%;
}

.body {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto !important;
}

.form-control {
    border-color: #000;
}
.form-select {
    border-color: #000;
}
    .form-select > a:hover {
        background-color: red;
    }
.list-group-item {
    border-color: #fff;
    padding-bottom:2px;
}
.input-group-text {
    border-color: #000;
    background-color: var(--pc);
}

.data {
    visibility: hidden;
    display: none;
}

.text-primary {
    color: var(--pc);
}
.text-teal {
    color: var(--pc2);
}
.text-gold {
    color: var(--pc);
}
.text-black {
    color: #000;
}
.text-gold-shadow {
    color: #000;
    text-shadow: 2px 2px var(--pc);
}
.text-copyright {
 font-size: .7REM;
}

.valtext {
    color:red;
}

.strikethrough {
    text-decoration: line-through;
}

.date-text {
    font-size: .7rem;
}

/* Big Cal*/

.current-day {
    background: linear-gradient(135deg, #fff8e1, #ffe082); /* Soft golden gradient */
    border: 2px solid #ffca28; /* Warm amber border */
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(255, 202, 40, 0.4); /* Subtle glow */
    padding: 4px;
    position: relative;
    z-index: 1;
}

    .current-day .day-number {
        color: #d17b00; /* Deep amber for contrast */
        font-weight: bold;
    }

.day-number {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.appointment-box {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 4px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    white-space: normal;
    word-wrap: break-word;
    color: #000;
}

.status-label {
    position: relative;
    top: 4px;
    right: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    font-size: 0.75em;
    margin-bottom: 2px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Status-specific background colors */
.status-scheduled {
    background-color: #d4edda;
    border: 2px solid #28a745;
}

.status-complete {
    background-color: #d1ecf1;
    border: 2px solid #17a2b8;
}

.status-cancelled {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
}

.status-confirmed {
    background-color: #CCFFCC;
    border: 2px solid #dc3545;
}

.status-pending {
    background-color: #FFE5B4;
    border: 2px solid #dc3545;
}

.status-default {
    background-color: #f0f0f0;
    border: 2px solid #ccc;
}


.status-birthday {
    background: #e6fcf5; /* soft mint */
    border: 1px solid #000; /* mint border #96f2d7*/
}

    .status-birthday .status-label {
        color: #000; /* teal label text */
    }

/* Optional: birthday card styling tweaks for clarity */
.cal-birthday-name {
    color: #0b5345;
    font-size: 1.6REM; /* darker teal for contractor name */
    font-weight: bold;
}
.cal-birthday-title {
    color: #0b5345;
    font-size: 1.2REM; /* darker teal for contractor name */
    font-weight: bold;
    padding-top: 5px;
}



    .bgcal {
    border-collapse: collapse;
    margin-bottom: 0px;
    font-size: 1rem;
   
}

    .bgcal td {
        padding: 2px 2px 2px 5px;
  /*      border: solid 1px #000;*/
    }

.cal-link {
    font-size: .8rem;
    line-height: 0px;
    color:black;
 /*   color: var(--pc2);*/
}

    .cal-link a:hover {
       color: var(--pc);
    }
    .cal-link b {
        color: var(--pc);
    }

/* PopUP */

.overlay {
    background: #000;
    position: fixed;
    inset: 0; /* top/right/bottom/left = 0 */
    filter: opacity(80%);
    opacity: .80;
    z-index: 110;
}

.hideme {
    display: none !important;
}

.showme {
    display: block !important;
    visibility: visible;
    position: fixed;
    inset: 0; /* top/right/bottom/left: 0 */
    z-index: 1000;
}

.popup_block {
    background: #fff;
    padding: 5px;
    border: 10px solid var(--pc2);
    width: 550px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 150;
    border-radius: 5px;
    box-shadow: 0 15px 10px rgba(0,0,0,0.7);
}

    .popup_block .close {
        position: absolute;
        top: -33px;
        right: -10px;
        transition: all 200ms;
        font-size: 50px;
        font-weight: bold;
        text-decoration: none;
        color: var(--pc);
    }

        .popup_block .close:hover {
            color: var(--pc3);
        }

    .popup_block h3 {
        padding: 6px;
        color: #333;
    }

.popup {
    background-color: #fff;
    padding: 8px;
    min-height: 200px;
    max-height: 70vh;
    overflow: auto;
    scrollbar-gutter: stable both-edges; /* prevents lateral jump */
}

/* background scroll lock when open */
body.modal-open {
    overflow: hidden;
}

.white-link {
    color: #fff;
}

a.white-link-link:hover {
    color: var(--accent);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.pg-anchor {
    display: block;
    position: relative;
    top: -60px;
    visibility: hidden;
}

.border-primary {
    border-color: var(--pc) !important;
    --bs-border-opacity: 1;

}
.border-teal {
    border-color: Red !important;
}

.border-white {
    border-color: #FFF !important;
}

.border-black {
    border-color: #000 !important;
}
.bg-white {
    background-color: #FFF !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-light2 {
    background-color: aliceblue !important;
}


.bg-primary {
    --bs-bg-opacity: 0;
    background-color: var(--pc) !important;
}
.bg-main {
    --bs-bg-opacity: 0;
    background-color: var(--pc) !important;

}
.bg-teal {
    --bs-bg-opacity: 0;
    background-color: var(--pc2) !important;
}
.bg-grey {
    background-color: var(--pc4) !important;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Font Awesome */

.fa {
    color: #000;
}

.fawhite {
    color: #FFF !important;
}

.fagold {
    color: var(--pc);
}

.fapc2 {
    color: var(--pc2);
}

.fapc3 {
    color: var(--pc3);
}


.fapc4 {
    color: var(--pc4);
}
/* Font Awesome */

/* Progress Template */
.TransparentGrayBackground {
    position: fixed;
    top: 0;
    left: 0;
    background-color: Gray;
    filter: opacity(80%);
    opacity: 0.8;
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
    z-index: 1001;
}

.Updatewrapper {
    width: 100%;
    margin-top: 30px;
    padding: 0;
    min-height: 200px;
    position: absolute;
}

.UpdateBody {
    font-size: 14px;
    color: #000;
    padding: 3px;
    text-align: left;
    z-index: 1102;
    margin-bottom: 5px;
}


.UpdateProgress {
    /*background-color: #FFF;*/
    color: #000;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    z-index: 1102;
}

    .UpdateProgress img {
        align-items: center;
        text-align: center;
        margin: auto;
    }




/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-outline-primary:hover {
        color: #FFFFFF;
    }



.btn-primary {
    color: #fff;
    background-color: var(--pc2);
    border-color: #000;
    min-width: 50px;
}


    .btn-primary:hover {
        color: #000;
        background-color: var(--pc);
        border-color: #000;
        border-color: #000;
    }

    .btn-primary:focus, .btn-primary.focus {
        color: #fff;
        background-color: var(--accent);
        border-color: #000;
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #000;
        background-color: var(--pc4);
        border-color: #000;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
        }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}



.btn-secondary {
    color: #fff;
    background-color: var(--pc);
    border-color: #000;
    min-width: 50px;
}


    .btn-secondary:hover {
        color: #FFF;
        background-color: var(--accent);
        border-color: var(--pc4);
        border-color: #000;
    }

    .btn-secondary:focus, .btn-secondary.focus {
        color: #fff;
        background-color: var(--pc4);
        border-color: var(--pc4);
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf;
    }

        .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
        }

.btn-light {
    color: #fff;
    background-color: var(--pc2);
    border-color: #000;
    
}

    .btn-light:hover {
        color: #000;
        background-color: var(--pc);
    }

    .btn-light:focus, .btn-light.focus {
        color: #fff;
        background-color: var(--pc);
        border-color: var(--pc);
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

    .btn-light.disabled, .btn-light:disabled {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

    .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
    .show > .btn-light.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf;
    }

        .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
        .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
        }


/*Navbar overrides*/

.navbar.sticky-top {
    transition: .5s;
}

.navbar {
    border-top: 1px solid #000;
    background-color: #f5f5f5;
    border-bottom: 5px solid var(--pc);
}

    .navbar .navbar-nav .nav-link {
        margin-left: 25px;
        padding: 15px 0;
        text-transform: uppercase;
        color: var(--pc2);
        font-weight: 500;
    }

    .navbar .nav-link.active {
        color: #000;
        font-weight: bolder;
    }

    .navbar .navbar-nav .nav-link:hover {
        color: var(--pc);
    }

.dropdown {
    font-family: inherit;
    margin: 0;
}

.dropdown-menu {

        display: none;
    padding: 5px;
    position: absolute;
    background-color: var(--pc2);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
        z-index: 1000;

}

    /*     Links inside the dropdown */
    .dropdown-menu a {
        float: none;
        color: #fff;
        padding: 4px 6px;
        text-decoration: none;
        display: block;
        text-align: left;
    }


        .dropdown-menu a:hover {
            color: #000;
            background-color: var(--pc);
        }

.dropdown:hover .dropdown-menu {
    display: block;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


button.navbar-toggler.navbar-toggler-right {
    border-color: yellow;
}

/* End navbar */

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    vertical-align: middle;

    text-shadow: 1px 1px 1px #000;
    z-index: 1;
    height:100%;
}


.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 5px solid var(--dark);
    border-radius: 10px;
}


@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
                background: rgba(0, 0, 0, .50);
        }
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../images/page.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: #999999;
    }

/* Site Path */
.pathCrumbs {
    text-align: center;
  
/*     color: black;
    padding-top: 3px;
    margin-bottom: 8px;
    padding-bottom: 3px;
    width: 100%;*/
}

.siteMapPath {
    font-size: .7rem;
}

    .siteMapPath a {
        color: #fff;
    }

.currentNodeStyle {
    font-weight: bold;
    color: #fff;
}

.nodeStyle {
    /*   text-decoration: none;*/
}

.pathSeparatorStyle {
    color: #fff;
}

.rootNodeStyle {
    /*    text-decoration: none;*/
}
/* Site Path End */

/*** Services ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .55);
}

    .facts-overlay h1 {
        font-size: 120px;
        color: transparent;
        -webkit-text-stroke: 2px var(--accent);
    }

    .facts-overlay a:hover {
        color: var(--accent) !important;
    }


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--pc2);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Footer ***/
.footer {
    color: #F5F5F5;
    background-color: var(--pc2);
    margin-top: auto;
  

}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #F5F5F5;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }


        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #999999;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--accent);
            letter-spacing: 1px;
            box-shadow: none;
        }

    .footer a.mail-link {
        color: white;
    }

        .footer a.mail-link:hover {
            color: var(--accent);
        }

    .footer .copyright {
        padding: 25px 0;
        font-size: 15px;
        border-top: 1px solid rgba(256, 256, 256, .1);
    }

        .footer .copyright a {
            color: #FFF;
        }

            .footer .copyright a:hover {
                color: var(--accent);
            }


    .row2 {
    margin: 0px -23px;
}

.cbox {
}

    .cbox label, .cpadd-inline label {
        text-align: left;
        padding-left: 0.5em;
        padding-right: 0.75em;
    }

.grid-row {
    background-color: #FFF;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: .8rem;
    overflow: hidden;
}

.grid-alt {
    background-color: #D8D8D8;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: .8rem;
    overflow: hidden;
}
.grid-flag {
    background-color: yellow;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: .8rem;
    overflow: hidden;
}
.grid-row2 {
    background-color: var(--pc2);
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: .8rem;
    overflow: hidden;
    color: #fff;
}
    .grid-row2 a {
        color: #fff;
    }

        .grid-row2 a:hover {
            color: #ddd; /* optional hover color */
        }
.grid-alt2 {
    background-color: #D8D8D8;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: .8rem;
    overflow: hidden;
    color: #000;
}

.col-box {
    border-right: 1px solid #000;
}

.col-box-center {
    text-align: center;
}

.grid-head {
    background-color: #696969;
    border: solid 1px #000;
    color: #fff;
    font-weight: bold;
    font-size: .8rem;
}

    .grid-head a {
        color: #fff;
        text-decoration: underline;
    }

.grid-nodata-text {
    font-weight: bold;
    color: #999;
    font-size: 1.5rem;
    text-align: center;
}

.grid-nodata-text-small {
    font-weight: bold;
    color: #999;
    font-size: 1.1rem;
}

/*Boxes */
.applicationhead {
    color: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-top: 5px;
    padding: 6px 6px 6px 15px;
    text-align: left;
    border-left: solid 1px #03254C;
    border-right: solid 1px #03254C;
    border-top: solid 1px #03254C;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--accent), var(--pc2));
    color: #fff;
    border-left: solid 10px var(--pc);
    text-shadow: 1px 1px 1px #000;
}

.applicationsubhead {
    color: #fff;
    padding: 6px 6px 6px 15px;
    text-align: left;
    border-left: solid 1px #03254C;
    border-right: solid 1px #03254C;
    border-top: solid 1px #03254C;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--accent), var(--pc2));
    color: #fff;
    border-left: solid 10px var(--pc);
    text-shadow: 1px 1px 1px #000;
}

.applicationinst {
    border: solid 1px #03254C; 
    background-color: var(--pc);
    color:white;
    padding: 10px;
    font-size: .8rem;
}

.applicationtask {
    border: solid 1px #03254C;
    background-color: #D8D8D8;
    padding: 10px;
    font-size: .8rem;
}

.applicationtaskteal {
    border: solid 1px #000;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--accent), var(--pc2));
    color: #fff;
    padding: 10px;
    font-size: .8rem;
}
    .applicationtaskteal a {
        color: #FFF;
    }
    .applicationtask a {
        color: #0645AD;
    }

.applicationbox {
    border: solid 1px #03254C;
    background-color: #fff;
    padding: 10px;
    min-height: 50px;
}


.applicationfoot {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border: solid 1px #03254C;
    min-height: 20px;
    color: #fff;
    margin-bottom: 10px;
    padding: 8px;
    text-align: left;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--pc2), #484848);
    color: #fff;
}

/* GV Normal */

.gridview {
    background-color: #fff;
    border-collapse: collapse;
    width: 100%;
    word-wrap: break-word;
    font-size: .8em;
    overflow: scroll;
}

    .gridview td {
        padding: 4px 4px 4px 4px;
        border: solid 1px #000;
        color: #000;
    }

    .gridview th {
        padding: 4px 4px 4px 4px;
        color: #fff;
        background-color: #696969;
        border: solid 1px #000;
    }

        .gridview th a {
            color: #fff;
        }

            .gridview th a:active {
                color: #ff0;
            }

    .gridview .grid-row {
        background-color: #FFF;
    }

    .gridview .grid-alt {
        background-color: #D8D8D8;

    }

 

    .gridview .grid-pgr {
        background-color: #D0EFFF;
    }



.grid-top-text {
    font-size: 1.5rem;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    padding: 3px 3px 3px 15px;
    margin-top: 10px;
    width: 100%;
    /*    box-shadow: 8px 2px 5px #ccc;*/
    font-weight: bold;
    color: #FFF;
    padding: 12px;
    text-align: left;
    background-color: #03254C;
    border-top: solid 1px #000;
    border-left: solid 1px #000;
    border-right: solid 1px #000;
    text-shadow: 2px 2px 0 #000;
}

.grid-inst-text {
    border-left: solid 1px #888;
    border-right: solid 1px #888;
    /*    box-shadow: 8px 4px 5px #ccc;*/
    padding: 6px;
    background: #def;
    min-height: 25px;
}

.grid-bottom-text {
    font-size: 1em;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 5px 5px 5px 5px;
    width: 100%;
    /*  box-shadow: 8px 2px 5px #ccc;*/
    font-weight: bold;
    color: #FFF;
    padding: 12px;
    text-align: left;
    background-color: #03254C;
    border-top: solid 1px #000;
    border-left: solid 1px #000;
    border-right: solid 1px #000;
    text-shadow: 2px 2px 0 #000;
}
/* GV No Border */
.gridviewnoborder {
    border: 0;
    border-collapse: collapse;
    width: 100%;
    word-wrap: break-word;
    table-layout: fixed;
    overflow: scroll;
}

    .gridviewnoborder td {
        padding: 2px 2px 2px 2px;
        border: 0;
    }
/* Box */
div.pager {
    margin: 2px;
    text-align: left;
    font-size: .8rem;
}

.PagerNormal {
    font-size: .8rem;
    color: #FFF;
    border: solid 1px #000;
    padding: 4px 6px;
    text-decoration: none;
    background-color: #1167B1;
    min-width: 20px;
}

.PagerCurrent {
    font-size: .8rem;
    color: #FFF;
    border: solid 1px #000;
    padding: 4px 6px;
    text-decoration: none;
    background-color: #03254C;
    min-width: 20px;
}

.card-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 1px 1px 1px #000;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--accent), var(--pc2));
    border-left: solid 10px var(--pc);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.card-title-small {
    font-size: 1.1rem;
    font-weight: bold;
}

.card-body {
    background-color: #fff;
    padding: 10px;
    border-color: #000;
    border: 1px solid #000;
}

.card-text {
    font-size: .9rem;
}

.card-footer {
    color: #000;
    background-color: var(--pc2);
    background-image: linear-gradient(var(--accent), var(--pc2));
}

    .card-footer a {
        color: white;
        font-size: .9rem;
    }