#notification-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px 10px 30px;
  border: 3px solid #d00235;
  border-radius: 8px;
  margin: 10px 30px 10px 30px;
}

#notification-bar p {
  display: inline-block;
  margin: 0;
  font-weight: 500;
}

#notification-bar .date {
  font-weight: 600;
}

#notification-bar .icon {
  display: inline-block;
  width: 99px;
  height: 25px;
  font-size: 13px;
  line-height: 2;
  background-color: #f0f0f0;
  margin: 0 0 0 15px;
  text-align: center;
  font-weight: 700;
}

#notificationBarCancelButton {
  height: 30px;
  width: 60px;
  background-color: #d00235;
  color: white;
  border-radius: 8px;
  border: 2px solid #d00235;
}

#shiraseLeftBox {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 5px;
}

#notificationBarIchiranButton {
  display: flex;
  background-color: #d00235;
  width: 150px;
  padding: 0 5px 0 5px;
  height: 25px;
  font-size: 13px;
  text-align: center;
}

#notificationBarIchiranButton a {
  color: white;
  margin: auto;
}
#notificationBarIchiranButton:hover {
  background-color: #9e9e9e;
}

#shiraseArrow {
  width: 10px;
  height: 10px;
  margin: auto;
}

@media (max-width: 720px) {
  #notification-bar {
    display: none;
  }

  #mobile-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    border: 2px solid #d00235;
    border-radius: 16px;
    margin: 10px 10px 10px 10px;
  }

  #mobile-shiraseBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  #mobile-shiraseIcons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  #mobile-bar p {
    margin: 0;
    font-weight: 500;
    font-size: 11px;
    white-space: nowrap;
  }

  #mobile-bar .date {
    font-weight: 600;
    font-size: 12px;
    color: #584d50;
  }

  #notificationBarIchiranButton {
    width: 99px;
    height: 25px;
    font-size: 12px;
    padding: 0%;
    margin-right: 4px;
    justify-self: flex-end;
  }

  #mobile-bar .icon {
    display: inline-block;
    width: 99px;
    height: 25px;
    font-size: 12px;
    line-height: 2;
    background-color: #f0f0f0;
    margin: 0 0 0 0;
    text-align: center;
    font-weight: 700;
    color: #4d4144;
  }

  #mobileBarCancelButton {
    height: 20px;
    width: 30px;
    background-color: #d00235;
    color: white;
    border-radius: 4px;
    border: none;
  }
}

@media (min-width: 721px) {
  #mobile-bar {
    display: none;
  }
}
