/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100%;
  overflow: auto;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  position: relative;
}

/* Background Container */
.background-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.opacity-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader img {
  width: 50px;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 80%;
  margin: 50px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Typography */
h1 {
  font-size: 36px;
  color: #333366;
  text-align: center;
  margin: 7px;
  padding: 7px;
}

h1 a:link,
h1 a:visited {
  color: #333366;
  text-decoration: none;
}

p {
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Links */
a:link,
a:visited {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Table Styles */
.divTablecontent {
  margin-top: 20px;
  width: 100%;
  border: 1px solid #000;
  display: table;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.divTableBodycontent {
  display: table-row-group;
}

.divTableRow1content,
.divTableRow2content,
.divTableRow3content {
  display: table-row;
}

.divTableCellcontent,
.divTableHead {
  border: 1px solid #999;
  display: table-cell;
  padding: 10px;
}

.divTableRow2content {
  background-color: #333366;
  color: #fff;
}

.divTableRow2content a:link,
.divTableRow2content a:visited {
  color: #fff;
}

.divTableRow3content {
  background-color: #fff;
}

.divTableRow3content a:link,
.divTableRow3content a:visited {
  color: #333366;
}

/* Image Styles */
.divTableCellcontent img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 1150px) {
  .hide-on-small-screens {
    display: none;
  }

  .divTableRow2content {
    display: block;
  }

  .divTableCellcontent {
    display: block;
    text-align: center;
    padding: 10px;
  }
}

/* Icon Hover Effect */
a img {
  transition: transform 0.3s ease;
}

a:hover img {
  transform: translateY(-5px);
}

/* Top Bar Styles */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.top-left-link a {
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* Iframe Container Fix */
.iframe-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 50px;
  padding: 0;
  overflow: visible;
}

/* Iframe Fix */
.iframe-container iframe,
#status-frame {
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
}
