  .notification__item {
    margin-bottom: 20px;
  }

  .notification__title {
    margin-bottom: 5px;
    font-weight: bold;
  }

  .notification__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .notification__text {
    font-size: 12px;
    font-weight: 400;
  }

  /* 토글 스위치 버튼 */
  .toggle--switch {
    width: 60px;
    height: 24px;
  }

  .toggle--switch input[type="checkbox"] {
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    text-indent: -9999px;
  }

  .toggle--switch .toggle__track {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 60px;
    height: 24px;
    border-radius: 50px;
    background: #8b8b8b;
  }

  .toggle--switch .toggle__track:before {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 20px;
    height: 20px;
    margin: 5px;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #8b8b8b;
    transition: left 0.5s;
    cursor: pointer;
  }

  .toggle--switch input[type="checkbox"]+label .toggle__track:after {
    font-size: 12px;
    content: "OFF";
    display: inline-block;
    position: absolute;
    right: 10px;
    color: #fff;
  }

  .toggle--switch input[type="checkbox"]:checked+label .toggle__track {
    background: var(--color-yellow);
  }

  .toggle--switch input[type="checkbox"]:checked+label .toggle__track:before {
    left: 33px;
    border: 1px solid var(--color-yellow);
  }

  .toggle--switch input[type="checkbox"]:checked+label .toggle__track:after {
    font-size: 12px;
    content: "ON";
    left: 10px;
    position: relative;
    color: #000;
  }
