/* ===== right4 deadline card fix ===== */
.right4 {
  overflow: hidden;
}

.orbitDeadlineHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
}

.orbitDeadlineHeader h3 {
  margin: 0;
  line-height: 1.2;
}

.orbitDeadlineNav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.orbitDeadlineNavBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.orbitDeadlineNavBtn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(35, 255, 207, 0.28);
  color: white;
}

.orbitDeadlineBody {
  flex: 1;
  min-height: 0;
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
}

.orbitDeadlineGauge {
  --p: 0;
  width: 84px;
  height: 84px;
  min-width: 84px;
  min-height: 84px;
  max-width: 84px;
  max-height: 84px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: conic-gradient(
    #23ffcf 0 calc(var(--p) * 1%),
    rgba(255, 255, 255, 0.1) calc(var(--p) * 1%) 100%
  );
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.orbitDeadlineGauge::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(25, 25, 25, 0.92);
}

.orbitDeadlineGaugeInner {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: white;
}

.orbitDeadlineMeta {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.orbitDeadlineProjectName {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orbitDeadlineStatusText {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.orbitDeadlineDateRange {
  margin: 5px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
}

.orbitDeadlineGaugeFooter {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}

.orbitDeadlineGaugeFooter > span {
  min-width: 0;
}

.orbitDeadlineGaugeFooter > span:first-child {
  text-align: left;
}

.orbitDeadlineGaugeFooter > span:last-child {
  text-align: right;
}

.orbitDeadlineGaugeFooter .red {
  color: #ff5252;
  font-weight: 700;
}

.orbitDeadlineEmpty,
.orbitDeadlineLoading {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
