/******************************************************************************/
/* 13a-2025.css                                                               */
/*                                                                            */
/* Date     Description                                          Name         */
/* -------- --------------------------------------------------   ------------ */
/* 20251207 Initial coding.                                      Rodney       */
/******************************************************************************/

/******************************************************************************/
/* Global Element Settings                                                    */
/******************************************************************************/
/* #region Global Elements Settings */
/******************************************************************************/
/* The a tag is here to change the link color to white.                       */
/******************************************************************************/
a
{
  color: blue;
  width:inherit;
}

h1
{
  padding-top: 30px;
}

p
{
  padding-top: 20px; 
}

/******************************************************************************/
/* The table, th, td selector is used here to define a universal look and     */ 
/* for all tables.  Here, the border will be a single, solid like.            */
/******************************************************************************/
table, th, td 
{
  border: 1px solid black;
  /****************************************************************************/
  /* Setting the border-collapse property to the value collapse will prevent  */
  /* a double line border.  It will be a single line border.                  */
  /****************************************************************************/
  border-collapse: collapse;
}

th, td 
{
  padding: 10px;
}

thead th 
{
  position: sticky;
  top: 0;
  background-color: #2c3e50; /* Required: prevents content from bleeding through */
  color: white;
  z-index: 1; /* Keeps headers stacked safely on top of scrolling rows */
}

table
{
  /****************************************************************************/
  /* Center the table within the <div>.                                       */
  /****************************************************************************/
  margin-left: auto;
  margin-right: auto;
  margin-top:15px;
  margin-bottom:20px;
}

tbody tr:nth-child(even) 
{
  background-color: #dadada;
}
/* #endregion */
/******************************************************************************/
/* Classes                                                                    */
/******************************************************************************/
/* #region Classes */
.clsImageBanner
{
  /****************************************************************************/
  /* The display CSS property sets whether an element is treated as a block   */ 
  /* or inline box and the layout used for its children, such as flow layout, */ 
  /* grid or flex.  The default value for this property is block.             */
  /*                                                                          */
  /* Setting the display property to block ensures that the image is centered */
  /* horizontally within the parent <div>.                                    */
  /****************************************************************************/
  display:block;
  
  /****************************************************************************/
  /* The CSS margin properties are used to create space around elements,      */
  /* outside of any defined borders.                                          */
  /*                                                                          */
  /* The browser selects a suitable margin to use. For example, in certain    */ 
  /* cases this value can be used to center an element.                       */
  /****************************************************************************/
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 20px;
}
.clsDivImageInsideTD
{
  width:200px; 
  float:right; 
  margin: 10px 0px 0px 0px
}
.clsImgImageInsideTD
{
  width:inherit;
}
.clstdDate
{
  text-align:left;
  vertical-align:top;
}
.clstdEvent
{
  text-align:left;
  vertical-align:top;
}
/* #endregion */
/******************************************************************************/
/* IDs                                                                        */
/******************************************************************************/
/* #region IDs */
#idDivMainPage
{
  margin-left: 100px;
  margin-right: 100px;
}
/* #endregion */