.three-section-layout {
  min-height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 15% 85%;
  gap: 1rem;
  padding: 1rem;
}

/*TODO
Once site is out of development, remove the notification component and remove - 25px from the below
*/

/* Single Popup Pane Page Layout */
.dashboard-page {
  min-height: calc(100vh - 25px);
  display: grid;
  place-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

/* RE-USEABLE STYLING */

/* General page sections */
.page-section {
  min-height: calc(100vh - 2rem);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Page card like styling for sections */
.card {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
