@import url(https://fonts.googleapis.com/css?family=Quicksand:wght@300..700&display=swap);
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --bs-primary: #f58a60;
  --primary-bg-color: #22415d;
  --primary-color: #ffffff;
  --primary-dark: #000;
  --spc-darkblue: #22415d;
}

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-weight: 300;
  height: 100vh;
  overflow: hidden;
}

/* ✅ Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #d5eaff;
  color: #1875ba;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  border-bottom: solid 2px #22415d;
}
header img {
  border-radius: 8px;
  height: 40px;
}

.custom-btn {
  border: solid 1px var(--primary-bg-color) !important;
  color: var(--primary-dark) !important;
}
.custom-btn:hover {
  background-color: var(--primary-bg-color) !important;
  color: var(--primary-color) !important;
}

.custom-btn-light {
  border: solid 1px lightgray !important;
  color: lightgray !important;
}
.custom-btn-light:hover {
  background-color: whitesmoke !important;
  color: black !important;
}

header h2 {
  margin: 0;
}
/* Layout container below header */
.nb_container {
  display: flex;
  height: 100vh;
  top: 0;
  margin-left: 290px;
  max-width: 1800px;
}
.list_item_header {
  background-color: var(--primary-bg-color) !important;
  color: var(--primary-color) !important;
}

p {
  text-wrap: balance;
  max-width: 100ch;
}

strong {
  font-weight: 700;
}
/* Sidebar */
.sidebar {
  position: fixed;
  height: 100vh;
  width: 280px;
  top: 0;
  background: #22415d;
  color: white;
  overflow-y: auto;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.sidebar a {
  display: block;
  color: #fcfefe;
  text-decoration: none;
  margin: 10px 0;
}

.card-body a {
  display: inline-block;
  text-decoration: none;
  color: #22415d;
  margin-bottom: 3px;
}
.custom-btn a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  margin-bottom: 3px;
}

/* Content */
.content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #ffffff;
}

.panel {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  background-color: #84ea62;
  border-radius: 10px;
}
.emailpart {
  /* bait input */
  /* do not use display:none or visibility:hidden
       that will not fool the bot*/
  position: absolute;
  left: -2000px;
}

hr.rounded-green {
  border: 10px solid #84ea62;
  border-radius: 5px;
  margin-top: 40px;
}

hr.newstyle {
  border: 0;
  height: 0;
  box-shadow: 0 0 10px 2px rgb(31, 230, 31);
  margin-top: 40px;
}
.imgjumbo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.imgheader {
  display: none;
}
.navimg {
  display: block;
}

.nb_img {
  border: 5px solid rgb(255, 255, 255);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
  max-width: 350px;
}

.cr_row_dark {
  padding: 20px;
  background-color: var(--spc-darkblue);
  color: #ffffff;
  border-radius: 5px;
}

.cr_row {
  padding: 20px;
  background-color: #ffffff;
  color: black;
  border: 1px solid var(--spc-darkblue);
  border-radius: 5px;
}

#pl_content p {
  max-width: 100ch;
  text-wrap: balance;
}
#pl_content h3 {
  margin-top: 1.5em;
}
#pl_content li {
  list-style-type: " - ";
  max-width: 450px;
  
}
#pl_content a:hover {
  background-color: #d5eaff;
  border-radius: 5px;
}
.bordered {
  border: solid 1px gray;
  border-radius: 5px;
  padding: 20px;
  max-width: 80ch;
  margin-bottom: 10px;
  background-color: whitesmoke;
}

.card-header.spc {
  background-color: var(--spc-darkblue);
  color: #fcfefe;
}
/* Hamburger */
.hamburger {
  display: none;
  font-size: 34px;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.nb_hide {
  display: block;
}

.grid-containernew {
  margin: 50px auto;
  width: min(1900px, 95%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1em;
}

@media (max-width: 1499px) {
  .grid-containernew {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-containernew .card {
  padding: 1em;
  border-radius: 0.5em;
  color: #0f0f0f;
  border: 1px solid rgba(166, 167, 172, 0.441);
  text-align: center;
  display: grid;
  gap: 1em;
  height: 100%;
}

.grid-containernew .card ppp {
  flex-grow: 1;
}

/* Mobile styles */
@media (max-width: 1200px) {
  .sidebar {
    position: fixed;
    top: 0px; /* sits below header */
    height: 100vh;
    left: 0;
    transform: translateX(-230px);
    z-index: 999;
    padding: 5px;
  }

  .sidebar.active {
    transform: translateX(0);
    padding: 20px;
  }

  .nb_hide {
    display: none;
  }
  .nb_hide.active {
    display: block;
  }
  .imgheader {
    display: block;
  }

  .navimg {
    display: none;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .nb_container {
    display: flex;
    height: 100vh;
    top: 0;
    margin-left: 60px;
  }

  .grid-containernew {
    grid-template-columns: 1fr;
  }
}
/* Dropdown button */
.dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ecf0f1;
  padding: 10px 0;
  font-size: 22px;
  cursor: pointer;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  padding-left: 15px;
}

/* Show when active */
.dropdown-content.show {
  display: block;
}

/* Optional hover styling */
.dropdown-content a {
  font-size: 22px;
  margin: 5px 0;
}

nav img {
  border-radius: 5px;
  width: 240px;
  margin-bottom: 10px;
}

.boxdisplay {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}
.mybox {
  flex: 1 1 300px;
  max-width: 500px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px rgb(11, 134, 241);
  border-radius: 10px;
  padding: 15px;
}

.myboxspan {
  padding: 20px;
  margin-right: 10px;
}
#lstSites li {
  cursor: pointer;
}
.lstSelected {
  background-color: #cec8c8;
}
