

.app {
  padding: 1rem;

}

.dashboard-page {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(158, 158, 158, 0);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}



.dashboard-small-page {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}

.section-heading {
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.title-tile {
  display: flex;
  align-items: center;   /* vertically align svg + text */
  gap: 1rem;             /* space between svg and heading */
  margin: 1rem 0;
}

/* svg wrapper */
.title-tile > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* svg itself */
.title-tile svg {
  width: 3rem;           /* scale svg to a nice size */
  height: 3rem;
  flex-shrink: 0;        /* prevent it from shrinking */
}

/* heading */
.page-heading {
  display: flex;
  margin: 1rem auto;
  font-size: 6rem;
  line-height: 1;        /* keeps heading vertically compact */
  align-items: center;
  justify-content: flex-start;
  letter-spacing: -0.05em;
}

#header-container {
  padding: 0.5rem;
  background-color: #ff880000;
  border-color: #00000000;
  color: #003b94;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.06);
}

.data-container {
  display: flex;
  color: #003b94;
  background-color: white;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}


.dashboard-page .profile-options-blue , 
.dashboard-page .profile-options-grey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.dashboard-page .profile-options-blue a {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  border-radius: 8px;
  border-color: #00000000;
  text-decoration: none;
  background-color: #1a73e8;
  color: white;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  align-content: center;
}

.dashboard-page .profile-options-grey a {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  background: #000000;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  background-color: #f5f5f5;
  color: rgb(0, 0, 0);
  transition: background-color 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  align-content: center;
}

.dashboard-page .profile-options-grey a:hover {
  background-color: #e2e6ea;
}

.dashboard-page .profile-options-blue a:hover {
  background-color: #1558b0;
}

.dashboard-page .secret-token code {
  background: #f1f3f4;
  padding: 0.6rem;
  display: inline-block;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  word-break: break-word;
}

.dashboard-page .task-list {
  margin-top: 0rem;
}

.dashboard-page ul.list-group {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.dashboard-page .task-row {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fefefe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-row {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fefefe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.container-row svg {
  width: 24px;
  height: 24px;
  fill: #1a73e8;
  flex-shrink: 0;
}

.dashboard-page .task-row:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dashboard-page .task-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-page .task-link {
  text-decoration: none;
  font-weight: 500;
  color: #1a73e8;
}

.dashboard-page .task-link:hover {
  text-decoration: underline;
}

.dashboard-page .task-right {
  min-width: 80px;
  text-align: right;
}

.dashboard-page .badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.dashboard-page .bg-success {
  background-color: #34a853;
  color: white;
}

.dashboard-page .bg-secondary {
  background-color: #dadce0;
  color: #444;
}

.dashboard-page .btn-primary {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
}

.dashboard-page .btn-primary:hover {
  background-color: #1558b0;
}

.button-stack-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


/* Sorts out the hyperlink styling */
#hyperlink-styled {
  color: inherit;       /* Keep the same color as surrounding text */
  text-decoration: none; /* Remove underline */
}

#hyperlink-styled:hover {
  text-decoration: underline; /* Optional: underline only on hover */
}









/* Second Row Styling */
.second-row-content {
  display: flex;
  flex-direction: row;
  margin: 1rem auto;
  max-width: 900px;
  gap: 1rem;
}

.second-row-content a {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  background: #000000;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  background-color: #f5f5f5;
  color: rgb(0, 0, 0);
  transition: background-color 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  align-content: center;
}

.second-row-content section {
  width: 100%;
  margin: 0;
}


/* Responsive Behavior */
@media (max-width: 768px) {
  .second-row-content {
    flex-direction: column;
  }

  .page-heading {
  font-size: 3rem;
  }
}


/* JSON SHITE */
.debug-json pre {
  white-space: pre-wrap;   /* preserve formatting but allow wrapping */
  word-wrap: break-word;   /* break long words/keys if needed */
  overflow-x: auto;        /* allow horizontal scroll if content is too wide */
  background: #f8f9fa;     /* optional: subtle background */
  padding: 1rem;           /* optional: spacing */
  border-radius: 6px;      /* optional: rounded edges */
  max-width: 100%;         /* ensure it doesn’t exceed container */
  box-sizing: border-box;
}
