@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;900&display=swap");

:root {
  --font-family: "Barlow", sans-serif;
  --h1-font-size: 2rem;
  --h2-font-size: 1.375rem;
  --h3-font-size: 1rem;
  --h4-font-size: 0.875rem;
  --h5-font-size: calc(1.5rem + 0.5vw);
  --h6-font-size: 0.625rem;
  --p-font-size: 1rem;
  --h1-font-weight: 400;
  --h2-font-weight: 600;
  --h3-font-weight: 400;
  --h4-font-weight: 400;
  --h5-font-weight: 400;
  --h6-font-weight: 400;

  /*COLOR ROOTS*/

  /* Default Theme */
  --color-primary: var(--color-base-color);
  --color-secondary: hsl(from var(--color-base-color) h s 80%);
  --color-accent: hsl(from var(--color-base-color) h s 60%);
  --color-background: var(--color-background-variable, hsl(from var(--color-base-color) h s 90%));
  --text-color: var(---super-text-color);
  --color-base-color: #ff0060;

  /*STATES OF SUCCESS AND ERROR */
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;

  /*STATES OF ACTIVE AND INACTIVE */
  --active-color: #6BF1A1;

  /*SILVERBACK COLORS */
  --silverback-purple: #816ED6;
  --silverback-purple-hover: #6654b3;
  --silverback-purple-active: #40328d;
  --silverback-purple-disabled: #b3a9d6;
  --silverback-green: #6BF1A1;
  --silverback-green-hover: #55d187;
  --silverback-green-active: #3ca169;
  --silverback-green-disabled: #a1d6b3;

}

/* FORM LABELS */
:root {
  --form-label-margin-top: 10px;
  --form-label-margin-bottom: 10px;
  --form-label-font-size: 0.9em;
  --form-label-font-weight: 500;
  --form-label-letter-spacing: 0.05em;
}




body {
  font-family: var(--font-family);
  overflow: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/*Layout ULT */

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .content-wrapper {
    max-width: 100%;

    margin: 0;
  }
}

/*Chapter 1 - the H1 Tags */

h1 {
  font-size: var(--h1-font-size);
  font-family: var(--font-family);
  font-weight: var(--h1-font-weight);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

h2 {
  font-size: var(--h2-font-size);
  font-family: var(--font-family);
  font-weight: var(--h2-font-weight);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

h3 {
  font-size: var(--h3-font-size);
  font-family: var(--font-family);
  font-weight: var(--h3-font-weight);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

h4 {
  font-size: var(--h4-font-size);
  font-family: var(--font-family);
  font-weight: var(--h4-font-weight);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

h5 {
  font-size: var(--h5-font-size);
  font-family: var(--font-family);
  font-weight: var(--h5-font-weight);
  color: var(--color-primary);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

h6 {
  font-size: var(--h6-font-size);
  font-family: var(--font-family);
  font-weight: var(--h6-font-weight);
  color: var(--color-primary);
  margin: 0;
  padding: 0;
  line-height: 95%;
}

/* CHapter 2- the P Tags */
/* p {
  font-size: var(--p-font-size);
  line-height: 1.5;
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  text-align: justify;
  hyphens: auto;
  word-wrap: break-word;
  max-width: 100%;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
} */
/* @media (max-width: 768px) {
  p {
    max-width: 65ch;
  }
} */


button:hover {
  cursor: pointer!important;
}

caption {
  font-size: var(--h6-font-size);
  line-height: 1.5;
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  text-align: justify;
  hyphens: auto;
  font-style: italic;
}

/*CHAPTER 4 - TABLES */

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table th {
  width: 50%;
  padding: 12px 20px;
  transition: background-color 0.3s, color 0.3s;
  text-align: left;
  font-weight: 600;
  font-size: var(--h3-font-size);
}

table th:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

table th:active {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ff0060;
}

table th:focus {
  outline: 2px solid #ff0060;
}

table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s, color 0.3s;
}

table td:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

table td:active {
  color: #ff0060;
}

table td:focus {
  outline: 2px solid #ff0060;
}

table tr:last-child td {
  border-bottom: none;
}

table hr {
  margin: 10px 0;
  border: none;
  height: 1px;
  width: 100%;
}

table td:first-child {
  text-align: left;
}

table td:last-child {
  text-align: right;
}

th {
  font-weight: 400;
  font-size: var(--h3-font-size);
}

/*Special Use Tables */

/* 1. TABLE GRID */

.table-grid {
  width: 100%;
  border-collapse: collapse;
}

.table-grid td {
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
}

/*CHAPTER 5 - The NAV */

/* nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  border-radius: 2.5px;
} */

.hamburger {
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }
}

/*Chapter 6 - IMGS */

img {
  width: 100%;
}

/*CHAPTER 7 - BUTTONS */

button.top-join {
  color: #6BF1A1;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18px;
  word-wrap: break-word;

  margin: 0;
  border: 1px solid #6BF1A1;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  text-align: center;
  width: 100%;
}

button.join {
  color: #6BF1A1;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18px;
  word-wrap: break-word;
  border: 1px solid #6BF1A1;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
}

/*ACTIVE VS INACTIVE STATES OF BUTTON */

/*CHAPTER 6 - HEADER + MAIN + FOOTER */

header {
  margin-top: 10px;
  margin-bottom: 10px;
}

header h1 {
  text-align: center;
}

header p {
  text-align: center;
}

.page-header {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*FOUND ON THE SPLASH PAGE + WORKSPACE SELECT*/
.page-header> h1 {
  text-align: center;
  font-size: 92px;
  font-family: var(--font-family);
  font-weight: var(--h2-font-weight);
  line-height: 0.9em;
  word-wrap: break-word;
}

.welcome-text {
  font-size: 36px;
  text-align: center !important;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 48px;
    line-height: 1.1em;
  }
}

.header-style-splash {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.header-style-splash h1 {
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: Barlow;
  font-weight: 500;
  line-height: 38.40px;
  word-wrap: break-word
}

.header-style-splash h2 {
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: Barlow;
  font-weight: 500;
  line-height: 38.40px;
  word-wrap: break-word
}

.header-style-splash p {
  color: white;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word
}

main {
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  flex: 1;
}

/* FOOTER */
footer {
  margin-top:50vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #fff;
  text-align: center;
}

footer.visible {
  transform: translateY(0);
}

footer p {
  font-size: var(--p-font-size);
  font-family: var(--font-family);
}

footer p.copyright {
  font-size: 12px;
  /* Adjust the size as needed */
  color: #fff;
  /* Ensure the text is visible */
  margin-top: 10px;
  /* Add some spacing if needed */
}

footer form {
  display: flex;
  margin: 20px 0;
}

footer input[type="email"] {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #fff;
  background-color: transparent;
}

footer .social-icons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  color: white;
}

footer .social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
  color: white;
}

footer .social-icons a img:hover {
  transform: scale(1.1);
}

/*FORM CLASSES */

form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/*portal - usedfor Apps*/

/* .portal {
  position: fixed;
  top: 0;
  left: 0;
  margin: 5px;
}

.portal i {
  color: white;
} */



/* CODE BLOCKS *.

Think of them as "cards" that contain code.

*/

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Track color */
  border-radius: 10px;
  /* Rounded corners */
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  /* Thumb color */
  border-radius: 10px;
  /* Rounded corners */
  border: 2px solid rgba(255, 255, 255, 0.1);
  /* Border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
  /* Thumb color on hover */
}


@media (max-width: 768px) {
  #z01-code-block {
    padding: 10px;
  
  }
}




/*SIZE CLASSES */

.size-full {
  width: 100%;
  margin: 0;
}

.size-half {
  width: 50%;
}

.size-quarter {
  width: 25%;
}

.size-symm {
  width: 100%;
  margin-bottom: 20px;
}

/*UL STRUCTURES */
/*HORIZONTAL OPTIONS */
.horizontal-options {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.horizontal-options li {
  margin-right: 10px;
}

/*BUTTON*/

button {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-family);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  border-radius: 8px;
  color: white;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/*
button:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
*/

@media (max-width: 600px) {
  button {
    width: 100%;
    padding: 6px 12px;
    /* adjust font size for smaller screens */
  }
}

/*ULTILITY CLASSES*/

hr {
  height: 2px;
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

.center {
  text-align: center;
}

.vertical-menu {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}


/* THE SPACERS */
/* Ideally for HR tags but have fun */

.spacer-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.spacer-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.spacer-32 {
  height: 32px;
}

.spacer-128 {
  height: 128px;
}
/*Layout Clases*/

section {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 1200px;

  /* Adjust this value as needed */
}

section:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.layout-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.layout-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.layout-grid[class*="columns-"] {
  grid-template-columns: repeat(var(--num-columns), 1fr);
}

.layout-grid.columns-1 {
  --num-columns: 1;
}

.layout-grid.columns-2 {
  --num-columns: 2;
}

.layout-grid.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: start;
  margin: 0 auto;
  max-width: 1200px;
}

.layout-grid.columns-4 {
  --num-columns: 4;
}

.layout-grid.columns-5 {
  --num-columns: 5;
}

@media (max-width: 750px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }

  .layout-grid[class*="columns-"] {
    grid-template-columns: 1fr;
  }

  .layout-grid.columns-1 {
    --num-columns: 1;

  }
}

/* Further responsive adjustments for the smallest screens */
@media (max-width: 480px) {
  .layout-grid {
    grid-template-columns: 1fr;

  }

  .layout-grid>article {
    height: auto;

  }
}

.layout-grid>article {
  height: 400px;
  /* Default height, adjust as needed */
}


.layout-full-page {
  height: 100vh;
  display: flex;
  /* Added to ensure children are flex items */
  flex-direction: column;
  /* Stack children vertically */
  overflow: hidden;
}

.center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure children do not overlap on mobile */
@media (max-width: 768px) {
  .layout-full-page {
    flex-direction: column;
    /* Maintain vertical stacking */
  }
}

@media (max-width: 768px) {
  .layout-horizontal {
    flex-direction: column;
  }
}

/*Special Misc Classes */

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

article {
  max-width: 100%;
  margin: 5px;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}


/*INPUTS and FORMS*/

form {
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  li>form {
    padding: 10px; 
    max-width: 300px;
    margin: 0 auto;
  }
}

form>label {
  margin-top: var(--form-label-margin-top);
  margin-bottom: var(--form-label-margin-bottom);
  text-transform: uppercase;
  font-size: var(--form-label-font-size);
  font-weight: var(--form-label-font-weight);
  letter-spacing: var(--form-label-letter-spacing);
}



/* Universal style for all textareas */
textarea {
  background: rgba(45, 45, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 18px;
  border-radius: 8px;
  backdrop-filter: blur(15px);
  color: #fff;
  font-size: 12px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  min-width: 100%;
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

textarea:focus {
  background: rgba(55, 55, 55, 0.7);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.8);
}



input[type="checkbox"] {
  -webkit-appearance: none;
  /* Remove default styling */
  appearance: none;
  width: 20px;
  /* Size of the checkbox */
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* Border color */
  border-radius: 4px;
  /* Rounded corners */
  background-color: rgba(255, 255, 255, 0.1);
  /* Background color */
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  /* Smooth transition */
}

input[type="checkbox"]:checked {
  background-color: rgba(255, 255, 255, 0.3);
  /* Checked background */
  border-color: rgba(255, 255, 255, 0.8);
  /* Checked border color */
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 8px;
  height: 12px;
  border: solid white;
  /* Checkmark color */
  border-width: 0 1px 1px 0;
  /* Checkmark shape */
  transform: rotate(45deg);
  /* Rotate to form a checkmark */
}

input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.8);
  /* Change border on hover */
}

/*CONDITIONAL LOGIC WITH SIDEBAR */

main.sidebar-active {
  margin-left: 300px;
}

/* Sidebar Styles */
aside {
  display: none;
}

aside.active {
  transform: translateX(0);
  width: 245px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-family: var(--font-family);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-background);
  border-right: 1px solid #e9ecef;
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.3s ease;
}

aside header h1 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

aside nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

aside nav ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

aside nav ul li i {
  margin-right: 10px;
  color: #0645ad;
}

aside nav ul li:hover {
  background-color: #eaecf0;
  cursor: pointer;
}

aside nav ul li p {
  font-weight: 400;
  font-family: var(--font-family);
  color: #202122;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

aside nav ul li p:hover {
  color: #0645ad;
}

.sidebar-active main {
  margin-left: 245px;
}

/*DROPDOWN*/

details>summary {
  cursor: pointer;
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

details>nav {
  display: none;
  padding-left: 20px;
}

details[open]>nav {
  display: block;
}

details>nav>a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 5px 0;
}

details>nav>a:hover {
  background-color: var(--color-accent);
}

/* Hide the actual checkbox */
.toggle-checkbox {
  display: none;
}

/* Style the label as a button */
.toggle-label {
  display: inline-block;
  cursor: pointer;
  /* Add button styling here */
}

/* Control the sidebar visibility */
.toggle-checkbox:checked~aside {
  transform: translateX(0);
}


/*IMG CLASSES*/

.small-logo {
  width: 100px;
  height: auto;
  filter: brightness(100);
  transition: all 0.3s ease;
}

.small-logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(100) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  cursor: pointer;
}

.small-logo {
  animation: pulse 2s infinite;
}

.small-logo {
  animation: float 5s ease-in-out infinite;
}

/*ANIMATIONS */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-2.5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.popup-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup-section article {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-section button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background-color: rgba(255, 69, 0, 0.7);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.popup-section.show {
  visibility: visible;
  opacity: 1;
}

/*SECTION CLASSES*/

.hero {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: var(--primary-text-color);
  font-size: 92px;
  font-family: Barlow;
  font-weight: 900;
  line-height: 92.2px;
  word-wrap: break-word;
  max-width: 800px;
  text-align: center;
}

.hero p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  word-wrap: break-word;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--primary-text-color);
  font-family: var(--font-family);

}

/*LAYOUT UTILITIES FOR ORGANIZING BUTTONS + CONTENT BLOCKS */

.two-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.two-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.two-col>article img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*.two-col>article p {
  color: var(--primary-text-color);
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word
}*/


/*TAB CONTAINER FOR CODE*/

/*POSSIBLY OBSOLETE*/
.responsive-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*POSSIBLY OBSOLETE*/


.tab-container {
  flex: 1 1 50%;
  max-width: 50%;
  box-sizing: border-box;
}

.tab-content {
  flex: 1 1 50%;
  /* max-width: 50%; */
  box-sizing: border-box;
}

.tabs {
  display: flex;
  padding-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-family);
  margin:0px;
}

.tab-button.active {
  border-bottom: 2px solid #000;
  font-weight: bold;
}

.tab-content {
  display: none;
}

.tab-content pre {
  padding: 10px;
  border-radius: 5px;
  text-align: left;
}

.tab-content code {
  display: block;
  white-space: pre-wrap;
}

@media (max-width: 768px) {

  .tab-container,
  .tab-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/*ALSO USED FOR LOGOUT BUTTON*/
.top-join {
  display: inline-block;
  padding: 5px 15px;
  font-weight: 400;
  color: white;
  border: .71px solid var(--silverback-green);
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  height: 40px;
  width: 100%;
  background-color: transparent;
  max-width: 100px;
}

.top-join:hover {
  mix-blend-mode: darken;
}

/* Add this to your design-system.css or style.css */
.sidebar-active nav {
  display: none;
}

.create-workspace-widget-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.create-workspace-widget-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: auto;
  margin-bottom: 5%;
  max-width: 500px;
  gap: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.122);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background-size: 200% 200%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.122); 
}



.create-workspace-widget-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.13), transparent);
  transition: background 0.1s;
}

@media (max-width: 600px) {
  .create-workspace-widget-container {
    flex-direction: column;
    padding: 10px;
    max-width: 100%;
    align-items: stretch;
    gap:5px;
    max-width: 90%;
  }

.create-workspace-button-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

}

.create-workspace-description {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.create-workspace-button {
  text-align: center;
  width: 92px;
  height: 92px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6BF1A1;
  border: 1px solid #6BF1A1;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.create-workspace-button:hover {
  background-color: #6bf1a13e;
  color: white;
  mix-blend-mode: lighten;
  transform: scale(1) !important;
  cursor: pointer;
}

.create-workspace-button:active {
  background-color: #5ae091;
  /* Slightly darker shade */
  color: #e0ffe6;
  /* Lighter text color for contrast */
}














@keyframes uniqueGlassBleedEffect {
  0% {
    background-position: 0% 0%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  }
  20% {
    background-position: 10% 10%;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  }
  40% {
    background-position: 20% 20%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  }
  60% {
    background-position: 30% 30%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  }
  80% {
    background-position: 40% 40%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    background-position: 50% 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  }
}

@keyframes uniqueGlassBleedEffect-2 {
  0% {
    background-size: 100% 100%;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  }
  20% {
    background-size: 110% 110%;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  }
  40% {
    background-size: 120% 120%;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  }
  60% {
    background-size: 130% 130%;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  }
  80% {
    background-size: 120% 120%;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    background-size: 100% 100%;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  }
}

.widget-p {
  font-size: 12px !important;
  line-height: 1.4em !important;
  font-weight: 400 !important;
  margin-top: 10px !important;
}


.edit-btn {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(129, 110, 216, 0.1);
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 0px 1px rgb(212, 209, 255);
  opacity: 0.323;


}

.edit-btn:hover {
  opacity: 1;
}

.delete-btn {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(129, 110, 216, 0.1);
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 0px 1px rgb(212, 209, 255);
  opacity: 0.323;

}



.delete-btn:hover {
  opacity: 1;
}

.delete-btn-img {
  width: 16px;
  height: 16px;
}

.edit-btn-img {
  width: 16px;
  height: 16px;
}



.social-icons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.social-icons a i {
  width: 32px;
  height: 32px;
  text-align: center;
  color: rgba(105, 105, 105, 0.7) !important;
  transition: color 0.3s;
}



.social-icons a i:hover {
  color: rgba(105, 105, 105, 1);
  transform: scale(1.312);
  transition: transform 0.3s;
}
