/* THIS IS MY WAY TO TEST */
body.body-sscp {
  font-family: "Poppins", sans-serif;
  margin: 20px;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Section containers */
header.header-sscp,
section.section-sscp,
footer.footer-sscp {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #e6e6e6;
  color: #333;
  border-bottom: 3px solid #ec254c;
}

header.header-sscp {
  background: #f9f9f9;
}

.header-sscp {
  width: 100%;
}

/* Headings */
h1.h1-sscp,
h2.h2-sscp,
h3.h3-sscp {
  color: #333;
}

h1.h1-sscp {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2.h2-sscp {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

h3.h3-sscp {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Logo area (unchanged) */
.logo-container {
  text-align: center;
}

.logo-container img {
  max-width: 150px;
  height: auto;
  margin-right: 20px;
}

/* Language buttons (unchanged) */
.language-buttons {
  margin-bottom: 20px;
}

.language-buttons button {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #ec254c;
  color: #fff;
  border: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.language-buttons button:hover {
  background-color: #a50e25;
}

/* Tables */
table.table-sscp {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

thead.thead-sscp,
tbody.tbody-sscp {
  display: block;
}

tbody.tbody-sscp {
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}

tr.tr-sscp {
  display: table;
  width: 100%;
  table-layout: fixed;
}

table.table-sscp th.th-sscp,
table.table-sscp td.td-sscp {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

table.table-sscp th.th-sscp {
  background-color: #ec254c;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

table.table-sscp td.td-sscp {
  background-color: #fff;
}

table.table-sscp tr.tr-sscp:hover {
  background-color: #f1f1f1;
}

/* Selector bar (unchanged) */
.selector-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  background-color: white;
  border-bottom: 2px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.selector-container select {
  padding: 10px;
  margin-right: 10px;
  background-color: #ec254c;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.selector-container select:hover {
  background-color: #a50e25;
}

/* Alternative heading sizes */
h1.h1-sscp {
  font-size: 1.5rem;
  line-height: 32px;
}
h2.h2-sscp {
  font-size: 1.2rem;
  line-height: 26px;
}
h3.h3-sscp {
  font-size: 1rem;
  line-height: 26px;
}

/* Uppercase rules */
header.header-sscp h1.h1-sscp:first-child,
section.section-sscp h2.h2-sscp:first-child {
  text-transform: uppercase;
}

section .section-sscp p {
  color: #fff !important;
}
