html,
body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  overflow-x:hidden;
}

*{
  box-sizing:border-box;
}

html{
  -webkit-text-size-adjust:100%;
}

body{
  font-family:'Zen Kaku Gothic New',sans-serif;
  background:var(--bg-color);
  color:var(--text-color);
}

.app-shell{
  width:100%;
  max-width:430px;
  min-height:100vh;
  margin:0 auto;
  position:relative;
  padding-bottom:130px;
}

.hero{
  width:100%;
  text-align:center;
  padding:88px 24px 44px;
}

.card{
  width:calc(100% - 32px);
  max-width:398px;
  margin:-20px auto 0;
  padding:24px;
  border-radius:28px;
  text-align:left;
}

.hero,
.button-grid,
.salary-mini-grid,
.summary-grid,
.status-hero,
.salary-main-card{
  text-align:center;
}

.summary-box,
.salary-summary{
  text-align:left;
}

select,
button{
  width:100%;
  border:none;
  font-size:16px;
}

.button-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}

.action-btn{
  height:92px;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.store-logo{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:24px;
  margin-bottom:18px;
}

#settingTheme{
  width:100%;
  min-height:54px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.9);
  padding:0 16px;
  font-size:16px;
  color:var(--text-color);
}

#settingTheme:focus{
  outline:none;
  border-color:var(--accent-color);
}

.toast-message{
  position:fixed;
  left:50%;
  bottom:110px;
  transform:translateX(-50%) translateY(12px);
  z-index:2000;
  min-width:240px;
  max-width:calc(100% - 48px);
  padding:14px 18px;
  border-radius:999px;
  background:rgba(60,45,35,.92);
  color:#fff;
  text-align:center;
  font-size:15px;
  font-weight:700;
  opacity:0;
  pointer-events:none;
  transition:
    opacity .35s ease,
    transform .35s ease;
  box-shadow:0 16px 36px rgba(0,0,0,.22);
}

.toast-message.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.bottom-nav{
  position:fixed;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  width:calc(100% - 32px);
  max-width:398px;
  height:78px;
  display:flex;
  justify-content:space-around;
  align-items:center;
  z-index:9999;
  border-radius:28px;
}