/* 
** -----------------------------------------------------------------------------
** Filename:    railwatch-bs4.css
**
** Title:       Cascading Style Sheet for the Railwatch website - Bootstrap V4.
**
** Description: This CSS is used on Railwatch website pages. It is very light
**              because almost all of the formatting needed is in the Bootstrap
**              CSS file.
**
**              This CSS file is held in the '/css/' directory.
**
**              Do NOT use '//' comments in a CSS file - they are not supported.
**              If a CSS definition appears not to work look for bad comments!
**
** Author:      Jerry Alderson, Billing Specialists Ltd.
**
** Create Date: 3rd December 2017 (non-Boostrap version).
**
** Last Change: 26th March 2022.
** -----------------------------------------------------------------------------
*/

/*=== Page Border ===*/

body {
#border: 5px solid red;
#    height: 81px;
#    text-align: center;
#    background-color: white;
#    padding: 0.5cm;
}

.pagecontainer {
#    width: 960px;
    margin: 0 auto;
    #padding: 10px 25px;
    padding: 1px 1px;
    border: 3px solid #ccc;
    background: green;
}

.centre-text {
    text-align: center;
}

.highlighted-text {
    color: red;
    font-style: bold;
    font-style: italic;
}


