:root {
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

a {
  color: #1d4ed8;
}

a:hover {
  color: #1e40af;
}

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

nav > ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.settings-panel,
.sidebar-panel {
  overflow: hidden;
}

.settings-panel > summary,
.sidebar-panel > summary {
  list-style: none;
  outline: none;
}

.settings-panel > summary:focus-visible,
.sidebar-panel > summary:focus-visible {
  box-shadow: inset 0 0 0 4px #e0e7ff;
}

.settings-panel > summary::-webkit-details-marker,
.sidebar-panel > summary::-webkit-details-marker {
  display: none;
}

.settings-panel-toggle {
  transition: transform 0.16s ease;
}

.settings-panel[open] > summary .settings-panel-toggle,
.sidebar-panel[open] > summary .settings-panel-toggle {
  transform: rotate(180deg);
}

input:not([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]),
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.75rem;
}

input:not([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]):focus,
select:focus,
textarea:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 1px;
  border-color: #3b82f6;
}

nav input.top-nav-email-input {
  margin-bottom: 0;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.app-button-primary {
  border: 1px solid #111827;
  border-radius: 0.5rem;
  background: #111827;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.app-button-primary:hover {
  background: #020617;
  border-color: #020617;
}

button.dpw-launcher:hover,
button.dpw-launcher:focus-visible,
.dpw-launcher:hover,
.dpw-launcher:focus-visible {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%) !important;
  border-color: rgba(15, 23, 42, 0.10) !important;
  color: #111827 !important;
}

button.dpw-launcher:hover .dpw-label,
button.dpw-launcher:focus-visible .dpw-label,
.dpw-launcher:hover .dpw-label,
.dpw-launcher:focus-visible .dpw-label {
  color: #111827 !important;
}

button.dpw-launcher:hover .dpw-badge,
button.dpw-launcher:focus-visible .dpw-badge,
.dpw-launcher:hover .dpw-badge,
.dpw-launcher:focus-visible .dpw-badge {
  color: #ffffff !important;
}

button.dpw-launcher:hover[data-online="1"] .dpw-dot,
button.dpw-launcher:focus-visible[data-online="1"] .dpw-dot,
.dpw-launcher:hover[data-online="1"] .dpw-dot,
.dpw-launcher:focus-visible[data-online="1"] .dpw-dot {
  background: #22c55e !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18) !important;
}

.app-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.marginTop {
  margin-top: 15px;
}

.centerAlign {
  text-align: center;
}

.centerMargins {
  margin-left: auto;
  margin-right: auto;
}

.notificationBackground {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2px;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  width: 100%;
}

.notificationMessage {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: left;
  overflow-wrap: anywhere;
}

.notificationExit {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: white;
  flex: 0 0 auto;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
  margin-right: 0;
  padding: 0.25rem;
  user-select: none;
}

.notificationExit:hover,
.notificationExit:focus {
  background: transparent;
  border-color: transparent;
  color: white;
}

.notificationExitButton {
  width: 40px;
}


.notificationBackground-debug {
  background-color: #00895A;
}

.notificationBackground-info {
  background-color: #6F7887;
}

.notificationBackground-success {
  background-color: #3C71F7;
}

.notificationBackground-warning {
  background-color: #D9C800;
}

.notificationBackground-error {
  background-color: #D93526;
}

.topNavRight {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0px !important;
}

.topNavRight:hover {
  cursor: pointer;
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.youtubeIcon {
  width: 35px;
  height: 30px;
}

.twitterIcon {
  width: 35px;
  height: 30px;
}

.noLinkDecoration {
  color: #373c44;
  text-decoration: none;
}

.navButtonLink {
  margin-left: -5px;
  text-decoration: none;
}

footer {
  margin-top: 50px;
}
