/* index.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
  margin: 0%;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
}

input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

.main_container {
  padding: 20px;
}

.title {
  font-size: 18px;
  font-weight: 700;
  margin: 0px;
  margin-bottom: 10px;
}

.tab_bar {
  width: 80%;
  height: 60px;
  padding-left: 10%;
  padding-right: 10%;
  position: fixed;
  bottom: 0px;
  display: flex;
  justify-content: space-around;
  background-color: white;
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.05);
}

.tab_bar > button {
  background: none;
  border: none;
}

.tab_bar_icon > svg {
  width: 20px;
  height: 20px;
  fill: #dedede;
}

.tab_bar_icon_selected > svg {
  width: 20px;
  height: 20px;
  fill: #0086ff;
}

.line {
  background-color: #ededed;
  height: 0.5px;
  margin-bottom: 20px;
}

.alarm {
  width: 100%;
}

.gray_text {
  color: #bdbdbd;
}

.gray_block {
  background-color: rgba(245, 245, 245, 0.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
}

/* already read css */
.read {
  background-color: rgba(220, 220, 220, 0.5);
  color: #bdbdbd;
}

.gray_img {
  -webkit-filter: grayscale(100%);
}

.white_block {
  background-color: #ffffff;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.alarm_main {
  display: flex;
  flex-direction: column;
  min-width: 85%;
}

.feed_alarm {
  margin-bottom: 10px;
}

.alarm_title {
  font-size: 15px;
  font-weight: 700;
}

.alarm_embed {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: hidden;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.embed_text {
  width: 60%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.embed_img_container {
  /* overflow: hidden; */
  width: 40%;
  height: 85px;
  object-fit: scale-down;
}

.embed_img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.embed_icon {
  /* width: 20px; */
  max-height: 20px;
  margin-bottom: -6px;
  margin-right: 2px;
}

.alarm_insight {
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.mini_profile_img_container {
  position: relative;
  min-width: 38px;
  margin-right: 10px;
}

.mini_profile_img_round_container {
  width: 38px;
  height: 38px;
  border-radius: 38px;
  overflow: hidden;
  border: solid 0.5px #f3f5f7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mini_profile_img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.profile_icon {
  width: 15.2px;
  height: 15.2px;
  border-radius: 3px;
  position: absolute;
  right: -5px;
  top: 5px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
}

a {
  text-decoration: none; /*링크의 밑줄 제거 */
  color: inherit; /* 링크의 색상 제거 */
}

.bottom_blank {
  height: 60px;
  /* margin-top: 0; */
}

.gray_alert_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 35vh;
}

.gray_alert_text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.gray_logo {
  width: fit-content;
}
