@charset "UTF-8";
/* CSS Document */
/* Remove rounding from the entire progress bar container */
.multi-progress-square {
    border-radius: 0 !important;
}

/* Remove rounding from each segment */
.multi-progress-square .progress-bar {
    border-radius: 0 !important;
}

.multi-progress-overlay {
    border-radius: 0 !important;
    background: transparent;
    position: relative;
}

/* Background faded multicolor segments */
.multi-progress-overlay .progress-bg {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-bg .progress-bar {
    border-radius: 0 !important;
    height: 45px; /* ★ fixes visibility */
}

/* Foreground progress layer */
.multi-progress-overlay .progress-foreground {
    position: relative;
    height: 100%;
    z-index: 3;
}

.progress-foreground .progress-bar {
  position: relative;
  overflow: hidden;
  border-radius: 10px !important;

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(229, 202, 216, 1),
    0 0 25px rgba(30, 50, 255, 1),
    0 0 35px rgba(153, 50, 204, 1);

  background: linear-gradient(
    -90deg,
    violet,
    deepskyblue,
    limegreen,
    yellow,
    orange,
    deeppink
  );

  height: 25px;
}

/* 🍬 Candy-cane wrap */
.progress-foreground .progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.0) 0px,
    rgba(255, 255, 255, 0.0) 12px,
    rgba(255, 255, 255, 0.75) 12px,
    rgba(255, 255, 255, 0.75) 24px
  );

  background-size: 35px 35px;
  animation: candyCaneSpin 1.2s linear infinite;

  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* 🌀 Motion gives the illusion of wrapping */
@keyframes candyCaneSpin {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 35px 0;
  }
}

.ColorTitan {background-color: rgba(255,0,213,1.00)}
.ColorRisingStar {background-color: rgba(0,255,227,1.00)}	
.ColorLegends {background-color: rgba(160,16,235,1.00)}	
.ColorElite {background-color: rgba(0,200,76,1.00)}
.ColorMaster {background-color: rgba(198,255,0,1.00)}

.table-transparent,
.table-transparent thead,
.table-transparent tbody,
.table-transparent tr,
.table-transparent th,
.table-transparent td {
    background: transparent !important;
    border: none !important;
    color: #fff;
}

/* Remove Bootstrap's top border line */
.table-transparent > :not(caption) > * > * {
    border-bottom: none !important;
}

/* Subtle hover only */
.table-transparent tbody tr:hover {
    background: rgba(255,255,255,0.04);
}
/* Base row styling */
.table-bevel tbody tr {
    position: relative;
    color: #f5f5ff;
    cursor: pointer;
}

/* Bevel background layer */
.table-bevel tbody tr::before {
    content: "";
    position: absolute;
    inset: 6px 8px;              /* inner spacing = padding feel */
    background: #1a1d2e;
    z-index: 0;

    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.16),
        inset -3px -3px 5px rgba(0, 0, 0, 0.85);

    transition: box-shadow 0.25s ease, transform 0.15s ease;
}

/* Keep content above bevel */
.table-bevel tbody tr > * {
    position: relative;
    z-index: 1;
    padding: 0.35rem 0.9rem;
}

/* Hover effect */
.table-bevel tbody tr:hover::before {
    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.18),
        inset -3px -3px 5px rgba(0, 0, 0, 0.85),
        0 0 10px rgba(182, 19, 246, 0.45);
}

/* Optional pressed feel */
.table-bevel tbody tr:active::before {
    transform: scale(0.985);
}
/* Subtle hover only */
.table-transparent thead tr:hover {
    background: rgba(255,255,255,0.04);
}
/* Base row styling */
.table-bevel thead tr {
    position: relative;
    color: #f5f5ff;
    cursor: pointer;
}

/* Bevel background layer */
.table-bevel thead tr::before {
    content: "";
    position: absolute;
    inset: 6px 8px;              /* inner spacing = padding feel */
    background: #1a1d2e;
    z-index: 0;

    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.16),
        inset -3px -3px 5px rgba(0, 0, 0, 0.85);

    transition: box-shadow 0.25s ease, transform 0.15s ease;
}

/* Keep content above bevel */
.table-bevel thead tr > * {
    position: relative;
    z-index: 1;
    padding: 0.35rem 0.9rem;
}

/* Hover effect */
.table-bevel thead tr:hover::before {
    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.18),
        inset -3px -3px 5px rgba(0, 0, 0, 0.85),
        0 0 10px rgba(182, 19, 246, 0.45);
}

/* Optional pressed feel */
.table-bevel thead tr:active::before {
    transform: scale(0.985);
}
