body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
}
.side-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 330px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  z-index: 1200;
}
.side-panel-header {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #353535;
  font-weight: 500;
  letter-spacing: 0;
}
.side-panel-close {
  cursor: pointer;
  color: #e0423c;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.notification-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.notification-list::-webkit-scrollbar {
  display: none;
}
.notification-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 18px 18px 12px 18px;
  position: relative;
  border: 1.5px solid #e2e8f0;
}
.notification-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 4px;
  color: #222;
}
.notification-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 8px;
  color: #353535;
}
.ticket-info {
  margin-bottom: 10px;
}
.ticket-number, .patient-name, .order-number {
  color: #178277;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  vertical-align: middle;
  margin-bottom: 2px;
}
.notification-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  margin-top: 8px;
}
.notification-time {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #878787;
  vertical-align: middle;
  gap: 4px;
}
.notification-view {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  text-decoration: underline;
  color: #20A99B;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  gap: 4px;
}
.notification-view svg {
  vertical-align: middle;
  margin-left: 2px;
}