/*
    Created on : Aug 23, 2024, 8:52:33 AM
    Author     : bruce
*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    padding:18px;
    font-size: 1em;
}
header, footer{
    display: block;
    width:100%;
    background-color: gainsboro;
    margin:13px 0;
    padding:13px;
}
a{
    color:blue;
}
a:hover{
    color:black;
    text-decoration: none;
    /*font-weight: bold;*/
}
nav{
    padding: 0 12px 8px 12px;
}
nav ul li{
    display: inline-block;
    margin: 0 4px;
}
nav ul li a{
    margin:0 2px;
}
fieldset legend{
    color: darkred;
    padding:0 4px;
}
form{
    padding:8px;
    margin-bottom: 8px;
}
form input[type='email'],
form input[type='date'],
form input[type='text'],
form input[type='password'],
form input[list],
form select{
    width:100%;
    padding:0 8px;
    font-size: 1em;
    margin-bottom: 4px;
}
form input[type=text]:focus {
    background-color: honeydew;
}
form input[readonly]{
    background-color: silver;
}
form input[type='submit'],
form button{
    /*margin-top:0px;*/
    font-size: 1em;
    padding:2px 8px;
    border: thin black solid;
    border-radius: 5px;
}
form input[type='radio']{
    width:30px;
    height:30px;
}
button:hover{
    cursor: pointer;
    color:white !important;
    background-color: black !important;
}
table{
    padding:8px;
}
th{
    border-bottom: thin solid black;
}
td{
    border-bottom: thin solid gray;
    padding:3px 5px;
}
.inlineblock{
    display: inline-block;
}
.taR{
    text-align: right;
}
.taL{
    text-align: left;
}
.taC{
    text-align: center;
}
.redtext{
color:red;
}
.blacktext{
color:black;
}
.msgAlert{
    border: red thin solid;
    padding: 8px;
}
.msgInfo{
    border: greenyellow thin solid;
    padding: 8px;
}

.boldtext{
    font-weight: bold;
}