   /* 4. Gradient Sweep */
.gradient-sweep {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.gradient-sweep::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 103, 179, 0.1), transparent);
    transition: left 0.6s ease;
}
.gradient-sweep:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 103, 179, 0.15);
}
.gradient-sweep:hover::before {
    left: 100%;
}

.indikator-item{
    background: #f7fafc;
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid rgb(250, 151, 70);
}

.rencana-kegiatan-item{
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #2D9C4D;
}

.penilaian-item{
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #912d9c;
}

.sub-cpmk-item{
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0067B3;
}
.empty-item{
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #282329;
}

.week-number {
    background: #0067b3;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: white;
}
.nav-underline .nav-link.active, .nav-underline .show>.nav-link.itk {
    font-weight: 700;
    color: #0067b3;
    /* border-bottom-color: rgb(250, 151, 70); */
    border-bottom-color: #0067b3;

}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link .itk{
    border-left-color: white;
    border-right-color: white;
    border-top-color: white;
}


.bg-soft-secondary{
    background-color: #fff2e9;
}

.nav-minggu-perkuliahan .nav-link.active{
    background: #e3ebf7;
    font-weight: bold;
    color: #0067B3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.nav-minggu-perkuliahan .nav-link{
    color: gray;
    transition: all 0.3s ease;
}
.nav-minggu-perkuliahan .nav-link:hover{
    background-color: #e3ebf7;
    color: #0067B3;
    font-weight: bold;
}
.week-box {
    height: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.week-box:hover {
    background-color: #fff2e9;
    color: #F96900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.scale-wrapper {
  width: 100%;
  overflow-x: auto;   /* bikin bisa geser horizontal */
  height: calc(20px + 80px); /* tinggi scale bar ditambah position absolute + 20px*/
}

 .scale-bar {
    min-width: 800px;
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(
        to right,
            #ef4444 0%, #ef4444 41%,
        #f97316 41%, #f97316 51%,
        #fde047 51%, #fde047 56%,
        #84cc16 56%, #84cc16 66%,
        #22c55e 66%, #22c55e 76%,
        #16a34a 76%, #16a34a 86%,
        #15803d 86%, #15803d 100%

    );
    position: relative;
    margin-bottom: 20px;
}

.scale-bar-label {
  position: absolute;
  bottom: -60px;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap;
}
.scale-bar-label-label small {
  display: block;
  font-weight: normal;
  font-size: 11px;
  color: #555;
}