﻿body {
    /*so the body content doesn't go behind the footer*/
    padding-bottom: 115px;
}

.table[border] th{
    /*bootstrap's header table style collides with gridview's default border color. This fixes issue*/
    border-top-color: inherit; 
}


/* your custom styles here */
.card-text {
    font-size: 15px;
}

/*#region Media Queries*/

/*Medium Breakpoint*/
@media screen and (min-width: 768px) {

    body {
        overflow-y: overlay;
    }

    .nav-item a:hover {
        text-decoration: underline;
        text-decoration-color: var(--cjad);
        text-underline-offset: 2px;
    }
}

/*Large Breakpoint*/
@media screen and (min-width: 992px) {

    .logo {
        background: url(../images/tdcj-seal-darkblue.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-position-x: right;
        background-size: 240px;
    }
}

/*#endregion*/
