body {
    margin: 0;
    padding: 0;
    background: #FDF6F9;
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
}

.appbar {
    width: 100vw;
    background: linear-gradient(90deg, #D291BC 40%, #D291BC 100%);
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(24, 86, 245, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.appbar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 60px;
}

.appbar-title {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-family: 'DM Serif Display', serif;
}

.container {
    margin: 0 auto;
    margin-top: 90px;
    padding: 1.5rem 0 2rem 0;
    width: 90vw;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
}

.floating-card {
    width: 100%;
    background: #F4F4F5;
    /* Alabaster */
    border-radius: 24px;
    box-shadow:
        0 4px 24px 0 rgba(210, 145, 188, 0.10),
        /* Dusty Rose, diffused shadow */
        0 1.5px 6px 0 rgba(245, 186, 221, 0.13),
        /* Blush Pink, soft inner glow */
        0 0.5px 2px 0 rgba(180, 175, 190, 0.07);
    /* Muted cool gray base */
    padding: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .appbar-inner {
        padding: 0 8px;
        height: 52px;
    }

    .appbar {
        height: 52px;
    }

    .appbar-title {
        font-size: 1.1rem;
    }

    .container {
        padding-top: 62px;
        width: 99vw;
    }

    .floating-card {
        padding: 1vw;
    }

    .collapsible-desc {
        padding-top: 3rem !important;
        /* add extra space for the button */
    }

    .desc-content {
        display: none;
    }

    .desc-content.open {
        display: block;
    }

    .desc-toggle {
        display: block;
    }

    .desc-toggle.open {
        position: static;
        margin: 1rem auto 0 auto;
        width: auto;
        text-align: center;
    }
}
.logout-btn {
  background: #D291BC ;
  color: #FFF8F0;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(210, 145, 188, 0.12);
  transition: background .2s, color .2s;
  font-family: 'Quicksand', sans-serif;
}

.logout-btn:hover {
  background: #80002A;
  color: #fff;
}
#appbar-menu {
  position: relative;
  text-align: right;
  margin-right: 1rem;
  font-family: sans-serif;
}

#burger {
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  display: inline-block;
}

#dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background: #f5f3ed;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  z-index: 10;
  width: 160px;
}

#dropdown-menu.show {
  display: block;
}

#dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #5a3e36;
  font-weight: 500;
  font-size: 1rem;
}

#dropdown-menu a:hover {
  background-color: #f0e0e8;
}
