/* BBERP Mobile App - Global Styles */

body {
    background-color: #F7F9FB;
    color: #1C1B1F;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

/* Material You Containers */
.m3-surface {
    background-color: #FEF7FF;
}

.m3-secondary-container {
    background-color: #E8DEF8;
    color: #1D192B;
}

.m3-tertiary-container {
    background-color: #F2CDD8;
    color: #31111D;
}

.m3-primary-container {
    background-color: #E5D4B6;
    color: #281900;
}

.m3-yellow-container {
    background-color: #FAE870;
    color: #211B00;
}

.m3-green-container {
    background-color: #C8D6C9;
    color: #00210E;
}

/* Modern Scrollbar */
.pill-chip {
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.pill-chip-active {
    background-color: #1C1B1F;
    color: #FFFFFF;
}

.pill-chip-inactive {
    background-color: #E1E2E6;
    color: #44474E;
}

/* Cards */
.m3-card {
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 16px;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
}

/* Bottom Sheet */
.bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px;
    z-index: 50;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-sheet.hidden-sheet {
    transform: translateY(100%);
}

.handle {
    width: 32px;
    height: 4px;
    background: #E1E2E6;
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

/* Utilities */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-appear {
    animation: fade-in-up 0.6s ease-out forwards;
}