/* Styles for showing tables */



/* The table used for the forum etc. */

.showtable {
  }

.showtable th, td {
    padding:5px;
    vertical-align:top;
    }

.showtable tr {
    vertical-align:top;
    }


.showtable th {
  background-color: #ADD8E6;
  text-align: right;
  border-radius:5px;
  }

.showtable td {
  background-color: #FAF0E6;
  text-align: left;
  border-radius:5px;
 }


/* The table used when editing the database etc. */

.edittableform {
    margin:0;
    }

.edittableform th, td {
    padding:5px;
    vertical-align:top;
    }

.edittableform tr {
    vertical-align:top;
    }

.edittableform th {
  background-color: #ADD8E6;
  text-align: right;
  border-radius:5px;
  }

.edittableform td {
  background-color: #FAF0E6;
  text-align: left;
  border-radius:5px;
 }

.edittableform * a {
  text-decoration:none;
  color:darkgray;
  }

/* Show who you are logged on as */

 .info_style
    {
    margin-left:1em;
    margin-bottom:1em;
    padding:5px;
    opacity:0.7;
    display: inline-block;
    font-size:70%;
    text-align:center;
    float:right;
    border: solid darkgray 3px;
    border-radius: 5px;
    position: relative;
    }


/* Part of authentication system */

 .motd_style
    {
    margin-left:1em;
    margin-bottom:2em;
    border-spacing:10px 10px;
    border-width:3px;
    border-color:SandyBrown;
    border-style:solid;
    border-radius:10px;
    background-color:SeaShell;
    padding:1em;
    display: inline-block;
    box-shadow:3px 3px 5px black;
    }

/* For messages on logging on, like "you are already logged on",
   that is things in the $SSO_loginInfo array */

.login_info {
  color:darkgreen;
  font-weight:bold;
  }

/* Style for ShowWarning function calls */

.warning_message {
  color:darkred;
  font-weight:bold;
  }
