/* 기본 대시보드 레이아웃 */
.dashboard-main {
  background-color: #f7f7fb;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.dashboard-main .div {
  background-color: #f7f7fb;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dashboard-main .frame {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: auto;
  min-height: 500px;
  background-color: #ebebf1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 1px 1px 1px #0000001a, inset -1px -1px 1px #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.dashboard-main .text-wrapper {
  position: relative;
  top: auto;
  left: auto;
  font-family: "Pretendard", "Pretendard-Medium", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  letter-spacing: -0.40px;
  line-height: 22.4px;
  text-align: center;
  width: 100%;
  max-width: 312px;
  margin-bottom: 20px;
}

/* Beta 라벨 스타일 */
.beta-label {
  display: inline-block;
  background-color: #EE6E6E;
  color: white;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 4px;
  position: relative;
  top: -10px;
  left: 5px;
  font-family: "Pretendard", "Pretendard-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 헤더 스타일 */
.dashboard-main .frame-5 {
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background-color: transparent;
}

.dashboard-main .text-wrapper-4 {
  position: absolute;
  top: 26px;
  left: 32px;
  font-family: "Pretendard", "Pretendard-Medium", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 25.2px;
  white-space: nowrap;
}

/* 푸터 스타일 */
.dashboard-main .frame-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dashboard-main .text-wrapper-3 {
  font-family: "Pretendard", "Pretendard-Medium", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.dashboard-main .ellipse {
  width: 3px;
  height: 3px;
  background-color: #000000;
  border-radius: 1.5px;
}