html,
body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  overflow-x:hidden;
}

*{
  box-sizing:border-box;
}

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:96px;
}

.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:center;
}

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;
}

.bottom-nav{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100%;
  max-width:430px;
  height:78px;
  display:flex;
  justify-content:space-around;
  align-items:center;
  z-index:999;
}

.store-logo{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:24px;
  margin-bottom:18px;
}

.card{
  text-align:left !important;
}

.hero{
  text-align:center !important;
}

.button-grid,
.salary-mini-grid,
.summary-grid{
  text-align:center !important;
}

.summary-box,
.salary-summary,
.status-hero{
  text-align:left !important;
}

.status-hero,
.salary-main-card{
  text-align:center !important;
}

#settingTheme{
  width:100%;
  min-height:54px;
  border-radius:14px;
  border:1px solid rgba(140,107,79,.18);
  background:rgba(255,255,255,.9);
  padding:0 16px;
  font-size:16px;
  color:var(--text-color);
}