/* Gradient background wrapper for all non-home pages */
.page-gradient-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.page-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #020617;
  background-image:
    linear-gradient(to right, rgba(71,85,105,0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71,85,105,0.3) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(40, 64, 116, 0.15) 0%, transparent 70%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  background-position: 0 0, 0 0, 50% 50%;
}

.page-gradient-content {
  position: relative;
  z-index: 1;
}

/* Fix 180° seam on circular progress rings by using opaque border color */
.c100 .bar,
.c100 .fill,
.pie {
  border-color: #0095ff !important; /* Fully opaque instead of #0095ffa1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Additional smoothing for better rendering */
.c100 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
