/******************************************************************************/
/* drone.css                                                                  */
/*                                                                            */
/* Date     Description                                          Name         */
/* -------- --------------------------------------------------   ------------ */
/* 20251207 Initial coding.                                      Rodney       */
/******************************************************************************/

/******************************************************************************/
/* Global Element Settings                                                    */
/******************************************************************************/
/* #region Global Elements Settings */
a
{
  color: blue;
}

h1
{
  font-family: Verdana;
  padding-top: 20px;
}

h2
{
  font-family: Verdana;
  padding-top: 20px;
}

p
{
  font-family: Verdana;
  padding-top: 20px; 
}

ul
{
  font-family: Verdana;
  padding-left: 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
{
  /****************************************************************************/
  /* Define the margins for the table, centering horizontally on the page.    */
  /****************************************************************************/
  margin-left: auto;
  margin-right: auto;
  margin-top:20px;
  margin-bottom:150px;
}

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;
}
/* #endregion */

/******************************************************************************/
/* IDs                                                                        */
/******************************************************************************/
/* #region IDs */
#idDivMainPage
{
  margin-left: 100px;
  margin-right: 100px;
}

#idFAACertImage
{
  float: right;         /* Shifts image to the right side */
  margin-left: 20px;    /* Adds space between text and image */
  margin-bottom: 10px;  /* Adds space below the image */
  margin-top: 20px;
  max-width: 100%;      /* Ensures responsiveness on mobile */
  height: auto;
  width: 400px;
}
/* #endregion */