:root {
  /* Usage in custom components */
    --md-sys-color-primary: #ffb3b6;
    --md-sys-color-on-primary: #5f121e;
    --md-sys-color-primary-container: #7d2933;
    --md-sys-color-on-primary-container: #ffdada;
    --md-sys-color-secondary: #e6bdbe;
    --md-sys-color-on-secondary: #44292b;
    --md-sys-color-secondary-container: #5d3f40;
    --md-sys-color-on-secondary-container: #ffdada;
    --md-sys-color-background: #201a1a;
    --md-sys-color-on-background: #ece0df;
  }

  .dark-theme {
    --md-sys-color-primary: #9c4049;
    --md-sys-color-on-primary: #ffffff;
    --md-sys-color-primary-container: #ffdada;
    --md-sys-color-on-primary-container: #40000c;
    --md-sys-color-secondary: #765657;
    --md-sys-color-on-secondary: #ffffff;
    --md-sys-color-secondary-container: #ffdada;
    --md-sys-color-on-secondary-container: #2c1516;
    --md-sys-color-background: #fffbff;
    --md-sys-color-on-background: #201a1a;
  }

    body {
        background-color: var(--md-sys-color-background);
        color: var(--md-sys-color-primary);
    }
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-primary);
}

md-top-app-bar {
    position: fixed;
    top: 0;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 64px; /* Adjust this value based on the height of your top app bar */
}
.button-container {
    display: flex;
    justify-content: center;
    width: 200px; /* Adjust this value based on your needs */
    margin-bottom: 20px; /* Adjust this value based on your needs */
    gap: 20px;
}

label {
    margin-bottom: 20px; /* Adjust this value based on your needs */
    font-size: 50px;
}
#theme-switch {
    position: absolute;
    right: 20px; /* Adjust this value based on your needs */
    top: 50%;
    transform: translateY(-50%);
}

