

  /* Survey Box */
  .skm.wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  .skm.wrapper:hover {
    transform: translateY(-5px);
  }

  /* Number Circle */
  .skm .numberCircle {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: darkorange;
    padding: 15px 20px;
    border-radius: 50%;
  }

  /* Stars */
  .skm .bi-star-fill {
    color: gold;
    font-size: 20px;
  }


  /* Gaya umum untuk tabel */
  .skm .table-elegan {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #ffffff, #f9fbfc); /* Gradasi warna lebih lembut */
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Efek bayangan lebih lembut */
    border-radius: 10px; /* Sudut melengkung */
    overflow: hidden;
    margin-top: 20px;
  }

  /* Mengatur padding dan border antar sel */
  .skm .table-elegan td {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0; /* Garis pembatas antar baris */
    text-align: left;
    font-size: 16px;
    color: #2c3e50;
  }

  /* Styling untuk header label */
  .skm .label {
    font-weight: 700;
    color: #34495e; /* Warna gelap yang elegan */
    background-color: #ecf0f1; /* Abu muda untuk kontras */
    font-size: 17px;
  }

  /* Efek hover */
  .skm .table-elegan tr:hover {
    background-color: #f0f4f7;
    transition: background-color 0.3s ease-in-out;
  }

  /* List pendidikan yang lebih rapi */
  .skm .pendidikan-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px; /* Jarak antar item */
  }

  .skm .pendidikan-list div {
    font-size: 15px;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    transition: transform 0.2s, background 0.3s;
    text-align: center;
    font-weight: 600;
  }

  /* Warna untuk masing-masing tingkat pendidikan */
  .skm .pendidikan-list .sd { background: #ffcc80; color: #7f4d00; }       /* Kuning untuk SD */
  .skm .pendidikan-list .smp { background: #81d4fa; color: #004b87; }      /* Biru untuk SMP */
  .skm .pendidikan-list .sma { background: #a5d6a7; color: #1b5e20; }      /* Hijau untuk SMA */
  .skm .pendidikan-list .diploma3 { background: #ffca28; color: #8b6508; } /* Emas untuk D3 */
  .skm .pendidikan-list .s1 { background: #ff7043; color: #fff; }          /* Oranye untuk S1 */
  .skm .pendidikan-list .s2 { background: #8e24aa; color: #fff; }          /* Ungu untuk S2 */
  .skm .pendidikan-list .s3 { background: #37474f; color: #fff; }          /* Abu gelap untuk S3 */

  /* Efek hover pada daftar pendidikan */
  .skm .pendidikan-list div:hover {
    transform: scale(1.08);
    opacity: 0.9;
  }

  /* Menghilangkan border pada baris terakhir */
  .skm .table-elegan tr:last-child td {
    border-bottom: none;
  }

  /* Responsif untuk ukuran layar */
  @media (max-width: 768px) {
    .skm .table-elegan {
      font-size: 14px;
    }
    .skm .pendidikan-list {
      flex-wrap: wrap;
    }
    .skm .pendidikan-list div {
      width: calc(50% - 10px);
    }
  }

  @media (max-width: 480px) {
    .skm .table-elegan {
      font-size: 12px;
    }
    .skm .pendidikan-list div {
      width: calc(100% - 10px);
    }
  }

  @media (max-width: 320px) {
    .skm .table-elegan {
      font-size: 10px;
    }
    .skm .pendidikan-list div {
      padding: 4px 8px;
    }
  }


  /* Progress Bar halaman depan */
  .skm .wrapper {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
  }

  .skm h6 {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: bold;
  }

  .skm .progress-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
  }

  .skm .progress-container {
    width: 100%;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 22px;
    position: relative;
  }

  .skm .progress {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .skm .progress-achieved {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to right, #007bff, #00c3ff);
    transition: width 1.5s ease-in-out;
    width: 0%;
  }

  .skm .progress-text {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
    width: 50px;
    text-align: right;
    display: flex;
    align-items: center; /* Pastikan teks sejajar secara vertikal */
    justify-content: center; /* Jika ingin teks benar-benar di tengah */
    line-height: 15px; /* Sesuaikan dengan tinggi progress bar */
  }

  /* Buttons */
  .btn-primary {
    background: #ff8800;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .btn-primary:hover {
    background: #cc6d00;
  }

  /* Form Styling */
  .skm .form-group {
    margin-bottom: 15px;
  }
  .skm .form-control, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  /* Konten Modal */
  .skm .modal-content {
    height: auto;
    border-radius: 10px; /* Radius sudut agar lebih halus */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Bayangan modal */
  }

  /* Header dan Footer Modal */
  .skm .modal-header, .skm .modal-footer {
    border: none;
    background-color: #f8f9fa;
    padding: 10px 15px;
  }

  .skm .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .skm .modal-footer {
    padding: 10px 15px;
  }

  /* Body Modal */
  .skm .modal-body {
    padding: 30px;
    max-height: 70vh; /* Batasan tinggi untuk scrollable */
    overflow-y: auto; /* Scroll jika konten melebihi ukuran */
  }

  .skm .modal-body .form-group {
    margin-bottom: 15px;
  }

  /* Styling Tombol di Footer */
  .skm .modal-footer .btn {
    margin-left: 10px;
  }


  /* progres bar fieldset*/     

  #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  #progressbar li {
    text-align: center; /* Pusatkan teks */
    display: flex;
    flex-direction: column; /* Tata letak vertikal */
    align-items: center;
  }

  #progressbar li i {
    font-size: 24px; /* Sesuaikan ukuran ikon */
    display: block; /* Memastikan ikon berada di atas */
    margin-bottom: 5px; /* Beri sedikit jarak antara ikon dan teks */
  }

  #progressbar li.active {
    color: black;
  }
  .progress {
    height: 10px;
  }


  .progress-bar {
    width: 33%;
  }

  /* fieldset*/

  fieldset {
    display: none;
  }
  fieldset:first-of-type {
    display: block;
  }