:root {
  --bg: #0f1724;
  --card: #0b1220;
  --muted: #9aa4b2;
  --accent: #3b82f6;
}
body {
  font-family: Inter, Segoe UI, Roboto, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #e6eef6;
}
.app {
  max-width: 1100px;
  margin: 28px auto;
  padding: 20px;
}
.header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 14px;
  margin-top: 14px;
  /* border: 2px solid rgb(207 207 207); */
  /* box-shadow: 0 0 9px rgba(0, 0, 0, 0.3); */
  border: 2px solid #e5e5e5;
}
.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.button {
  background: transparent;
  border: 1px solid rgb(203 203 203);
  padding: 8px 10px;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  background: linear-gradient(145deg, #f7f7f7, #fedd4c);
  font-size: 16px;
}
.button:hover {
  background: transparent;
  border: 1px solid rgb(203 203 203);
  padding: 8px 10px;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  background: linear-gradient(145deg, #f7f7f7, #cea800);
  font-size: 16px;
}
.button:active {
  background: transparent;
  border: 1px solid rgb(203 203 203);
  padding: 8px 10px;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  background: linear-gradient(145deg, #f7f7f7, #009006);
  font-size: 16px;
}
.breadcrumbs {
  margin-top: 12px;
  color: #000000;
  border: 2px solid #e5e5e5;
  border-radius: 3px;
  padding: 5px;
}
.grid {
  display: block;
  margin-top: 12px;
  /* border: 2px solid rgb(207 207 207); */
  border-radius: 10px;
  /* box-shadow: 0 0 9px rgba(0, 0, 0, 0.3); */
}
.left {
  background: rgba(0, 0, 0, 0.15);
  padding: 12px;
  border-radius: 8px;
  min-height: 320px;
}
.right {
  background: rgba(255, 255, 255, 0.02);
  padding: 1px;
  border-radius: 8px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  color: #d6e6ff;
}
.table th,
.table td {
  padding: 3px;
  text-align: left;
  cursor: pointer;
  color: #000000;
  font-size: 16px;
  font-weight: normal;
}
.table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  margin-right: 8px;
}
.small {
  color: #000000;
  font-size: 16px;
}
.preview {
  position: fixed;
  z-index: 9;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 820px;
  color: #000;
  background: rgb(255 255 255);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: auto;
  max-height: 80vh;
  border: 3px solid #dddddd;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .preview {
    max-width: calc(100% - 20px);
  }
}
.preview pre {
  white-space: pre-wrap;
  max-height: 420px;
  overflow: auto;
}
.preview img,
.preview video,
.preview audio,
.preview embed {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 6px;
}
.site-title {
  color: #ffffff;
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  /* text-transform: uppercase; */
  text-shadow: 0 2px 4px rgb(0 0 0);
}
.topbar {
  background-color: #93d1ff;
  /* height: 42px; */
  /* padding: 1rem; */
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  transition: background-color 2s linear;
  /* margin-bottom: 30px; */
  /* background-image: linear-gradient(to right, rgb(0 142 255) 0%, #ab6965, rgb(33 39 40) 100%); */
  animation: topbar 10s infinite;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
.bottom_bar {
  background-color: #93d1ff;
  /* height: 42px; */
  /* padding: 1rem; */
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  transition: background-color 2s linear;
  /* margin-bottom: 30px; */
  /* background-image: linear-gradient(to right, rgb(0 142 255) 0%, #ab6965, rgb(33 39 40) 100%); */
  animation: topbar 10s infinite;
}
@keyframes topbar {
  0% {
    background-color: rgb(96 171 255);
  }
  20% {
    background-color: rgb(174 142 96);
  }
  40% {
    background-color: rgb(198 205 125);
  }
  60% {
    background-color: rgb(244 220 182);
  }
  80% {
    background-color: rgb(68 91 71);
  }
  100% {
    background-color: rgb(96 171 255);
  } /* loop back to start */
}

.ssl-img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 20px;
     */
  margin-top: 5px;
}
.ssl-img {
  display: flex;
  height: 72px;
  width: 72px;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  cursor: pointer;
  animation: shake 1s infinite;
}
.ssl-img-text {
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  margin: auto;
  padding-bottom: 20px;
}
.ssl-text-failed {
  color: rgb(255 0 0);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-style: none;
  padding-top: 60px;
  font-size: 20px;
  width: 100%;
  margin: auto;
  padding-bottom: 20px;
}
.invisible_div {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  flex-wrap: wrap;
  margin-right: auto;
  width: 100%;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footertxt {
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #000000 !important;
  border-style: none;
  padding: 0px;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-top: 1px;
  line-height: 1.1;
  margin-bottom: 1px;
  font-size: 16px;
  font-weight: 400;
  margin-right: 15px;
  margin-left: 15px;
  width: auto;
}
.center_footer_logo {
  display: flex;
  justify-content: center;
}

.social_icons {
  width: 56px;
}
.footerlogo {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  max-width: 200px;
  height: auto;
  background-color: #ffffff;
  border-radius: 20px;
  border: 2px solid #5fbbe1;
  border-bottom: 0px;
  border-top-right-radius: 60px;
  border-top-left-radius: 60px;
}
.social_btns {
  background-color: transparent;
  /* Rounded button for a more modern look */
  -webkit-appearance: none;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  margin: 5px;
  /* Square shape with equal height and width */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* Soft border with transparency */
  border-style: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  /* Smooth transitions */
  /* Light background color for initial state */
}
.social_btns:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}
.social_btns:active {
  transform: scale(0.98);
  /* Slight shrink effect on click */
}
.social_btns img {
  width: 40px;
  /* Appropriate size for the icon */
  height: 40px;
  /* Ensures icon scales properly */
  transition: filter 0.3s ease;
  /* Smooth transition for hover effect */
  border-radius: 50px;
  border: 2px solid #2196f3;
  padding: 3px;
}
.social_btns:hover img {
  filter: brightness(1.2);
  /* Increase brightness of the icon on hover */
}
.footer_social_links {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding: 20px;
  left: 0%;
  right: 0%;
  z-index: 1;
  position: relative;
  margin: 0px;
  background-color: #ffffff29;
}
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  /* margin-top: 20px; */
  margin-bottom: 60px;
  background-color: #daefff;
}

.logo-bar img {
  height: 110px;
  transition: transform 0.3s;
  padding: 10px;
}

.logo-bar img:hover {
  transform: scale(1.5);
}
.btn {
  background: #ff00009c;
  border: 2px solid #cbcbcb;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: none;
  float: right;
}
tr {
  display: table-row;
  vertical-align: inherit;
  unicode-bidi: isolate;
  border-color: inherit;
  border-width: 2px;
  border-color: rgb(223 223 223);
  border-style: solid;
}
.objects_container_iconlist {
    display: block;       /* just use block for vertical stacking */
    padding: 20px;
    background-color: rgb(255, 255, 255);
    margin: 20px;
  border-radius:10px;
  border: 2px solid #e5e5e5;
}

.descriptions {
    color: rgb(0, 0, 0);
    text-align: center;      /* align text left */
    font-size: 16px;
    font-weight: 400;
    font-family: system-ui, sans-serif;
    margin: 5px 0;
    padding: 10px 15px;
    border-radius: 10px;
    /* line-height: 1.6; */      /* more space between lines */
}
h2 {
  text-align:center;
  color:#000;
  padding:0px;
  margin:0px;
    font-size: 18px;
    font-weight: normal;
}