html {
  --color-primary: #ff036f;
  --color-primary-hover: #f82680;
  --color-success: #2ed978;
  --color-error: #ff2727;

  --content-max-width: 1000px;
  --border-radius: 28px;
}

html[data-theme="dark"] {
  --color-scheme: dark;
  /* Backgrounds */
  --color-background-primary: #2b2b2b;
  --color-background-secondary: #313131;
  --color-background-modal: rgb(5 5 5 / 53%);
  --color-background-input: #373737;
  --color-background-table-header: #313131;
  --color-background-table-body: #2b2b2b;
  --color-background-table-row-hover: #3a3a3a;
  --color-background-list-buttons: #2a2a2a;
  --color-background-dashboard: #313131;
  --color-background-dashboard-menu: #2b2b2b;
  --color-background-dashboard-menu-hover: #3a3a3a;

  /* Text */
  --color-text-primary: white;
  --color-text-secondary: lightgrey;

  /* Other */
  --color-link-primary: #979797;
  --color-border: #3f3f3f;
  --color-scrollbar-thumb: #444444;
  --color-scrollbar-track: transparent;
}

html[data-theme="light"] {
  --color-scheme: light;
  /* Backgrounds */
  --color-background-primary: #ffffff;
  --color-background-secondary: #f0f1f3;
  --color-background-modal: rgba(43, 43, 43, 0.67);
  --color-background-input: #fbfafb;
  --color-background-table-header: #f0f1f3;
  --color-background-table-body: #ffffff;
  --color-background-table-row-hover: #e7e7e7;
  --color-background-list-buttons: #f2f2f2;
  --color-background-dashboard: #fff;
  --color-background-dashboard-menu: #2b2b2b;
  --color-background-dashboard-menu-hover: #3a3a3a;

  /* Text */
  --color-text-primary: #000000;
  --color-text-secondary: #757575;

  /* Other */
  --color-link-primary: #1a0dab;
  --color-border: #e5e5e5;
  --color-scrollbar-thumb: #c5c5c5;
  --color-scrollbar-track: transparent;
}

:root {
  color-scheme: var(--color-scheme);
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue,HelveticaNeue,Helvetica,Arial,sans-serif;
  background: var(--color-background-primary);
  color: var(--color-text-primary);
  scrollbar-color: var(--color-scrollbar-thumb)  var(--color-scrollbar-track);
}

* {
  -webkit-overflow-scrolling: touch;
}

body.no-scroll { 
  height: 100%;
  overflow: hidden;
  width: 100%;
}

button {
  padding: 17px;
  margin: 10px;
  background: var(--color-primary);
  border-radius: var(--border-radius);
  color: white;
  cursor: pointer;
  border: none;
  font-size: 17px;
  min-width: 115px;
}

button:focus {
  outline: 0px solid transparent;
}

button:hover {
  background: var(--color-primary-hover);
}

button.secondary {
  background: none;
  border: 2.1px solid var(--color-primary);
  color: var(--color-primary);
}

button.selected:hover {
  background: #34de15;
}

input, textarea, select, a { 
  outline: none !important;
}

a {
  text-decoration: none;
  color: var(--color-text-secondary);
}

h1 {
  margin-block: 0px;
}

h2 {
  margin-block: 0px;
}

h3 {
  margin-block: 0px;
}

h4 {
  margin-block: 0px;
}

ul, ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

table {
  width: 100%;
  border-spacing: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

thead {
  background: var(--color-background-table-header);
}

tbody {
  background: var(--color-background-table-body);
}

th, td {
  padding: 15px;
}

.td-cutoff-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 300px;
}

.td-long-text {
  text-align: left;
  white-space: pre-line;
}

tbody tr.clickable:hover {
  background-color: var(--color-background-table-row-hover);
  cursor: pointer;
}

.text-input, .select-input{
  -webkit-appearance: none;
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  box-sizing: border-box;
  background: var(--color-background-input);
}

.text-input::placeholder {
  color: var(--color-text-secondary);
}

.checkbox-input {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 15px;
  text-align: left;
  margin-left: 5px;
  margin-right: 5px;
}

.checkbox-label {
  color: var(--color-text-secondary);
  margin-left: 6px;
}

.select-input {
  color: var(--color-primary);
  text-align:center;
  text-align-last:center;
  height: 55px;
}
.input-color {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 15px;
  text-align: left;
}
.color-label {
  margin-left: 10px;
}

.input-error {
  color: red;
}

.input-heading {
  padding: 10px !important;
}

.input-heading-icon {
  font-size: 20px;
  margin-left: 7px;
  cursor: pointer;
  color: var(--color-primary);
}

.input-text {
  text-align: left;
  padding: 0px 10px;
  padding-bottom: 20px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 7px;
}

textarea {
  background: var(--color-background-input);
  color: var(--color-text-primary);
  font-size: 20px;
  border: 1px solid var(--color-border);
  text-align: left;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  white-space: pre-line;
  width: 100%;
  padding: 16px 15px;
  box-sizing: border-box;
  resize: vertical;
  font-family: "Circular Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

textarea::placeholder {
  color: var(--color-text-secondary);  
}

[contentEditable=true]:empty:not(:focus):before {
  content:attr(data-text)
}

[contenteditable]:focus {
  outline: 0px solid transparent;
}

code {
  color: var(--color-text-primary);
  padding: .2em .6em;
  border-radius: var(--border-radius);
  background: var(--color-background-secondary);
  margin: 0px 1px;
  overflow-x: auto;
}

pre {
  white-space: pre;
  background: var(--color-background-secondary);
  padding: 10px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  text-align: left;
  line-height: 1.5em;
  box-sizing: border-box; 
}

pre code {
  display: block; 
  padding: 5px;
  border-radius: 0;
  margin: 0;
  white-space: pre;
}

.form {
  height: auto;
  text-align: center;
}

.alert-content {
  min-width: 300px;
  background: var(--color-background-primary);
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  max-width: 350px;
  position: relative;
  margin-top: 10vh;
  margin-bottom: 10vh;
}
.alert-title{
  color: var(--color-text-primary);
  text-align: center;
  font-weight: bold;
  padding: 12px 12px 4px 12px;
  font-size: 19px;
}
.alert-message{
  color: var(--color-text-secondary);
  text-align: center;
  white-space: pre-wrap;
  padding: 6px 20px 20px 20px;
  max-height: 40vh;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 1.2em;
}
.alert-buttons {
  border-bottom: 15px;
  width: 100%;
  text-align: center;
  padding-bottom: 5px;
}
.alert-button{
  cursor: pointer;
  padding: 10px;
  border-top: 1px solid var(--color-border);
  color: var(--color-primary);
}

.modal {
  text-align: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--color-background-modal);
  backdrop-filter: blur(1.5px);
}

.modal-content {
  background-color: var(--color-background-primary);
  margin: auto;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  height: auto;
}

.modal-content-large {
  max-width: 600px;
  margin-bottom: 20px;
  margin-top:20px;
}

.modal-content-small {
  max-width: 432px;
  margin-top: 5vh;
  margin-bottom: 20px;
}

.modal-content h1 {
  text-align: left;
  padding: 3px 0px;
}

.modal-content h2 {
  text-align: left;
  padding: 3px 0px;
}

.modal-content h3 {
  text-align: left;
  padding: 3px 0px;
}

.modal-content h4 {
  text-align: left;
  padding: 3px 0px;
}

.modal-content p {
  text-align: left;
  padding: 0px;
  margin-block-start: 0.5em;
  margin-block-end: 1em;
  line-height: 1.2em;
}

.modal-content a {
  text-decoration: underline;
}

.modal-top {
  display: flex;
  padding: 0px 9px 11px 9px;
}

.modal-top-item {
  color: #fe2b65;
  font-size: 20px;
  margin-top: 4px;
  display: inline-block;
  cursor: pointer;

}

.modal-title {
  color: var(--color-text-primary);
  font-weight: bold;
  font-size: 22px;
  width: auto;
}

.modal-close {
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.2em;
}

.modal-close:hover {
  color: #ff8282;
}

.modal-grid {
  text-align: center;
  width: 100%;
}

.modal-grid-item {
  margin: 12px;
  display: inline-block;
}

.modal-grid-item-title {
  width: 100%;
  text-align: center;
  font-size: 15px;
  margin-right: 45px;
  color: var(--color-text-secondary);
}

.modal-grid-item-value {
  margin: 10px;
  text-align: center;
  font-size: 22px;
  color: var(--color-text-primary);
}

.modal-button {
  width: 100%;
  color: #fff;
  cursor: pointer;
  border: 0px;
  font-size: 16px;
  margin: 0px;
}

.modal-button-transparent {
  background-color: transparent;
  color: var(--color-text-primary);
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 0px;
  margin: 10px;
  min-width: auto;
}

.modal-button-transparent:hover {
  background: none;
}

#header {
  height: 55px;
  position: fixed;
  display: inline;
  width: 100%;
  background: var(--color-background-primary);
  text-align: center;
  font-size: 1.3em;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--color-border);
}
#header-content {
  margin: 0 auto;
  height: 100%;
  display: flex;
  width: 95%;
  max-width: var(--content-max-width);
}
#header-left {
  flex: 30%;
  height: 100%;
  text-align: left;
}
#header-center {
  flex: 55%;
  height: 100%;
  text-align: center;
}
#header-right {
  flex: 30%;
  height: 100%;
  display: flex;
}

#header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-link {
  margin: 0px 6px;
}
#header-logo {
  height: 38px;
  padding: 9px;
}
#header-title {
  color: var(--color-text-primary);
  font-weight: bold;
  margin: 15px;
  display: inline-block;
}
#header-account-button {
  font-size: 1.5em;
  color: var(--color-text-primary);
  cursor: pointer;
  margin: 10px;

}
#header-back-button {
  font-size: 1.01em;
  color: var(--color-primary);
  margin: 15px;
  display: inline-block;
  float: left;
  cursor: pointer;
}

.main-container {
  max-width: var(--content-max-width);
  margin: auto;
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 0px 20px;
  text-align: center;
}

.main-text-icon {
  font-size: 4em;
  padding: 20px;
}

.main-text-heading {
    font-size: 2.7em;
    font-weight: bold;
}

.main-text {
    margin: 20px 30px;
    font-size: 1.5em;
}

#footer {
  margin: 32px 12px;
  text-align: center;
  font-size: 14px;
}
#footer a {
  margin: 5px;
  display: inline-block;
  cursor: pointer;
  color: var(--color-text-primary);
}

#footer-copyright {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.grid {
  text-align: center;
  width: 100%;
}

.grid-item {
  margin: 12px;
  display: inline-block;
}

.grid-item-title {
  width: 100%;
  text-align: center;
  font-size: 17px;
  margin-right: 45px;
  color: var(--color-text-secondary);
}

.grid-item-value {
  margin: 10px;
  text-align: center;
  font-size: 23px;
  color: var(--color-text-primary);
}

.list-content {
  text-align: center;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.list-content table {
  border: none;
}

.list-none {
  font-size: 1.2em;
  padding: 220px 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.list-content:has(.list-none) {
    border: none;
}

#activity-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 99;
}

#activity-indicator-content {
  position: relative;
  display: inline-block;
  background: #242424ed;
  border-radius: var(--border-radius);
  border: 1.5px solid var(--color-border);
}

#activity-indicator-icon {
  height: 60px;
  width: 60px;
  padding: 12px;
  animation: spin 3.5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.login-forgot-password-button {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 15px;
  color: var(--color-text-secondary);
  float: right;
  margin-bottom: 13px;
}

#dashboard {
  margin: 0 auto;
  text-align: center;
}

#dashboard-content {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-background-dashboard);
  height: 100vh;
  height: 100dvh;
  display: flex;
}

#dashboard-menu-container {
  display: flex;
  z-index: 99;
}

#dashboard-menu {
  background-color: var(--color-background-dashboard-menu);
  width: 230px;
  display: flex;
  flex-direction: column;
}

#dashboard-menu-header {
  width: 100%;
  border-bottom: 1px solid #3f3f3f;
  height: 53px;
}

#dashboard-menu-header-container {
  display: flex;
  margin: 11px 16px;
}

#dashboard-menu-header-logo {
  height: 32px;
  width: auto;
  cursor: pointer;
}

#dashboard-menu-header-create-relationship-container {
  text-align: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#dashboard-menu-header-create-relationship {
  font-size: 1.25em;
  color: white;
  cursor: pointer;
}

#dashboard-menu-relationships {
  overflow: hidden;
  flex: 1;
}

#dashboard-menu-relationships-content {
  overflow-y: auto;
  margin-right: 0.5px;
  height: 100%;
  scrollbar-color: #3f3f3f transparent;
}

.dashboard-menu-relationships-row {
  padding: 6px 10px;
  cursor: pointer;
  color: lightgrey;
  margin: 5px 5px 8px 5px;
  border-radius: 8px;
  text-align: left;
  display: flex;
}

.dashboard-menu-relationships-row:hover {
  background-color: var(--color-background-dashboard-menu-hover);
}

.dashboard-menu-relationships-row-thumbnail-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-menu-relationships-row-thumbnail{ 
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #3f3f3f;
  background: var(--color-background-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  letter-spacing: 1px;
  font-size: 18px;
}

.dashboard-menu-relationships-row-body {
  margin-left: 8px;
  width: 100%;
  flex: 1;
}

.dashboard-menu-relationships-row-body-companion-name {
  white-space: nowrap; 
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
}

.dashboard-menu-relationships-row-body-countdown {
    font-size: 16px;
    margin: 5px 0px;
}

#dashboard-menu-footer {
  width: 100%;
  border-top: 1px solid #3f3f3f;
}

#dashboard-menu-footer-container {
  display: flex;
  margin: 6px;
  cursor: pointer;
  border-radius: 10px;
  padding: 8px 8px;
}

#dashboard-menu-footer-container:hover {
  background-color: var(--color-background-dashboard-menu-hover);
}

#dashboard-menu-footer-user-icon {
  font-size: 2.2em;
  color: white;
  text-align: left;
}

#dashboard-menu-footer-user-name{
  color: white;
  flex: 1;
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 4px;
}

#dashboard-menu-footer-ellipsis-icon {
  font-size: 1.4em;
  color: white;
  text-align: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#dashboard-menu-open-close-container {
  height: 52px;
}

#dashboard-menu-mobile-close-button {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 5px;
  display: none;
  margin: 10px 6px;
  background: var(--color-background-primary);
}

#dashboard-detail {
  flex: 1;
  width: 100%;
  height: 100%; 
  display: flex;
  flex-direction: column;
}

#dashboard-detail-header { 
  display: flex;
  background: var(--color-background-dashboard);
  height: 53px;
}

#dashboard-detail-header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#dashboard-detail-header-menu-button {
  color: var(--color-text-primary);
  cursor: pointer;
  margin: 13px;
  font-size: 1.5em;
  display: none;
}

#dashboard-detail-header-currency-button {
  margin: 13px;
  cursor: pointer;
}

#dashboard-detail-body {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#dashboard-detail-body-create-relationship {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

#dashboard-detail-body-create-relationship-content {
  margin: 10px auto;
  max-width: 570px;
  padding: 0px 20px;
}

#dashboard-detail-body-create-relationship-heading {
  margin-top: 40px;
}

#dashboard-detail-body-create-relationship-body-text {
  line-height: 1.3em;
}

#dashboard-detail-body-relationship-messages {
  overflow: hidden;
  flex: 1;
}

#dashboard-detail-body-relationship-messages-content {
  overflow-y: auto;
  height: 100%;
}
.dashboard-detail-body-relationship-messages-row-container {
  padding: 10px 20px;
  max-width: 840px;
  margin: 0 auto;
}

.dashboard-detail-body-relationship-messages-row-header {
  overflow: hidden;
  display: flex;
}

.dashboard-detail-body-relationship-messages-row-header-left {
  display: flex;
}

.dashboard-detail-body-relationship-messages-row-header-center {
  flex: 1;
  display: flex;
}

.dashboard-detail-body-relationship-messages-row-header-right {
  display: flex;
}

.dashboard-detail-body-relationship-messages-row-header-created-at {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.dashboard-detail-body-relationship-messages-row-header-thumbnail {
  background: var(--color-primary);
  color: white;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  border: 1px solid var(--color-border);
  font-size: 15px;
}

.dashboard-detail-body-relationship-messages-row-header-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-weight: bold;
}

.dashboard-detail-body-relationship-messages-row-text {
  text-align: left;
  margin: 20px;
  color: var(--color-text-primary);
  line-height: 1.6em;
}

.dashboard-detail-body-relationship-messages-row-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.dashboard-detail-body-relationship-messages-row-text a:hover {
  color: var(--color-primary-hover);
}

.dashboard-detail-body-relationship-messages-row-text img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin: 5px auto;
}

.dashboard-detail-body-relationship-messages-row-loading-container {
  text-align: left;
  margin: 20px;
  color: var(--color-text-secondary);
  line-height: 1.6em;
}

.dashboard-detail-body-relationship-messages-row-loading-status-container {
  display: flex;
  margin: 10px 0px;
}
.dashboard-detail-body-relationship-messages-row-loading-status-icon {
  height: 25px;
  animation: spin 3s linear infinite;
}
.dashboard-detail-body-relationship-messages-row-loading-status {
  margin-left: 8px;
}
.dashboard-detail-body-relationship-messages-row-loading-line {
  height: 11px;
  width: 100%;
  background: var(--color-background-primary);
  border-radius: 4px;
  margin: 15px 0px;
  position: relative; 
  overflow: hidden; 
}

.dashboard-detail-body-relationship-messages-row-loading-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #434343; 
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: glow 1.4s infinite ease-in-out; 
}

@keyframes glow {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05); /* Slightly scale up for effect */
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

.dashboard-detail-body-relationship-messages-row-loading-retry-container {
  cursor: pointer;
}

.dashboard-detail-body-relationship-messages-row-footer {
  display: flex;
  color: var(--color-primary);
  margin-left: 20px;
  margin-bottom: 15px;
}

.dashboard-detail-body-relationship-messages-row-footer-expiration-extension {
  font-size: 15px;
}

.dashboard-detail-body-relationship-messages-row-footer-icon {
  color: var(--color-primary);
  cursor: pointer;
  margin-right: 10px;
  font-size: 17px;
}

.dashboard-detail-body-relationship-messages-row-footer-icon:hover {
  color: var(--color-primary-hover);
}

#dashboard-detail-body-relationship-prompt-container {
  padding: 0px 10px;
}

#dashboard-detail-body-relationship-prompt {
  display: flex;
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-background-input);
}

#dashboard-detail-body-relationship-prompt-text-area {
  flex: 1;
  width: 100%;
  padding: 15px;
  margin: 0px;
  border: none;
  resize: none;
  overflow: hidden;
  height: 54px;
  max-height: 250px;
  border-radius: var(--border-radius);
  font-size: 18px;
}

#dashboard-detail-body-relationship-prompt-send-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  margin-right: 20px;
  cursor: pointer;
  color: var(--color-primary);
}

#dashboard-detail-body-relationship-prompt-send-button:hove{
  color: var(--color-primary-hover);
}

#dashboard-detail-body-relationship-prompt-disclaimer{
  font-size: 14px;
  padding: 10px;
  color: #8b8b8b;
  max-width: 700px;
  margin: 0 auto;
}

.purchase-preview-button {
  background: var(--color-background-secondary);
  color: var(--color-primary);
  text-align: center;
  text-align-last: center;
  cursor: pointer;
  border: 1px solid var(--color-border);
  margin-bottom: 10px;
  padding: 16px;
  font-size: 18px;
  border-radius: var(--border-radius);
}

.payment-terms{
  margin: 16px;
  color: var(--color-text-secondary);
}
#payment-error-message{
  margin: 10px;
  color: #ff2727;
}

@media only screen and (max-width: 800px) {
  .modal-grid-item-value {
    font-size: 18px;
  }

  #header-back-button {
    font-size: 0.8em;
    margin: 16px;
  }

  #header-logo {
    height: 35px;
    padding: 10px;
  }

  #header-title {
    font-size: 15px;
    margin: 17px;
  }

  #header-account-button {
    font-size: 1.4em;
    margin: 13px;
  }

  .main-text-icon {
    font-size: 3.5em;
  }
  
  .main-text-heading {
    font-size: 2.2em;
  }

  .main-text {
    font-size: 1em;
  }

  #footer {
    font-size: 13px;
  }

  #footer-copyright {
    font-size: 11px;
  }

  .grid-item-value {
    font-size: 18px;
  }

  .alert-content {
    max-width: 50vw;
  }

  .list-button {
    font-size: 15px;
  }

  #list-table {
    font-size: 10px;
  }

  #dashboard-menu {
    width: 230px;
    display: none;
  }

  #dashboard-detail {
    position: absolute;
  }

  #dashboard-detail-header {
    background: var(--color-background-primary);
  }

  #dashboard-detail-header-menu-button {
    display: block;
  }

  #dashboard-detail-body-create-relationship-heading {
    font-size: 1.7em;
  }

  #dashboard-detail-body-relationship-prompt-text-area {
    font-size: 15px;
    height: 65px;
  }

  #dashboard-detail-body-relationship-prompt-send-button {
    font-size: 1.4em;
  }

  #dashboard-detail-body-relationship-prompt-disclaimer {
    font-size: 9px;
    padding: 3px;
  }
}