body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* =========================
   BASE TYPOGRAPHY
========================= */

/* Headings */
h1 {
  font-size: 24px;
  margin: 0 0 15px 0;
  color: #222;
}

h2 {
  font-size: 20px;
  margin: 25px 0 10px;
  color: #222;
}

h3 {
  font-size: 16px;
  margin: 20px 0 8px;
  color: #333;
}

/* Paragraphs */
p {
  margin: 0 0 12px 0;
}

/* Links */
a {
  color: #0a58ca;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Bold text */
b, strong {
  font-weight: 600;
  color: #111;
}

/* Lists */
ul, ol {
  padding-left: 20px;
  margin: 10px 0;
}

li {
  margin-bottom: 6px;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  padding: 6px 8px;
  vertical-align: top;
}


/* =========================
   HEADER
========================= */
header {
  background: #333;
  color: white;
  padding: 20px;
  position: relative;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-ad {
  position: absolute;
  top: 0;
  right: 20px;
  width: 728px;
  height: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.header-ad iframe,
.header-ad img,
.header-ad div {
  width: 728px;
  height: 90px;
}

/* =========================
   MENU
========================= */
.menu {
  background: #555;
  padding: 10px 20px;
  position: sticky;
  top: 0;
}

.menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

.menu-links {
  display: flex;
}

.menu-links a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

.menu-links a:hover {
  text-decoration: underline;
}

/* =========================
   LAYOUT
========================= */
.container {
  display: flex;
  gap: 2px;
  padding: 2px;
}

.main {
  flex: 1;
  background: #f5f5f5;
  padding: 2px;
  padding-left: 200px;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #ddd;
  padding: 20px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #333;
  color: white;
  padding: 15px 20px;
}

.flinks {
  text-align: center;
}

.flinks a:link {
  color: white;
}


/* =========================
   GLOBAL
========================= */

.sapTable {
border:1px solid #fff; border-width:0 0 0 0px;
overflow: auto;
}

.headField{  
  background-color: #BBBBBB;
  color: #000000;
}

.keyField{  
  background-color: #DBDBBF;
  color: #000000;
}


.tableFields td {  
  word-wrap: break-word;
  border: 1px;
  border-style: solid;
  align: middle;
  padding: 3px 3px 3px 3px;
  overflow-wrap: anywhere;
}
.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.nav-buttons a {
  text-decoration: none;
  padding: 10px 15px;
  background: #555;
  color: white;
  border-radius: 4px;
}

.nav-buttons a:hover {
  background: #333;
}

 

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {




  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 0px;
  }

  .main {
    padding-left: 2px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .menu-links.active {
    display: flex;
  }

  .menu-links a {
    display: block;
    margin: 10px 0;
  }

  .logo img {
    height: 32px;
  }

  .header-ad {
    position: absolute;
    right: 0px;
    top: 1px;
    width: 100%;
  }
  
  .sapTable{
    width:100%;
    border-width:0 0 0 0px;
    overflow-x:scroll;
    white-space: nowrap;
  }
  
   .nav-buttons a {
    flex: 1;
    text-align: center;
  }

}