    /* Universal Setting */
    * {
    font-family: 'Montserrat', sans-serif;
    }

    /* You can also set specific weights if needed */
    h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    }

    body {
    font-weight: 400;
    background-color: #e8e9e0;
    }

    /* Hero */
    .hero {
        position: relative;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        background-color: #253b19;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('Asset/Hero/MBKMhero.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.1;
        z-index: 1;
    }

    .hero > div {
        position: relative;
        z-index: 2;
    }
    /* End Hero */

    /* Loading Screen */
    #loading-screen {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #e8e9e0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 1; /* Opacity awal */
    }

    #loading-screen img {
        width: 150px; /* Atur ukuran gambar */
        height: auto;
        animation: pulse 1s infinite;
    }
    /* End Loading Screen */


    /* carousel landing page */

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0; /* Sembunyikan tombol secara default */
        transition: opacity 0.3s ease; /* Tambahkan efek transisi */
    }

    .carousel:hover .carousel-control-prev,
    .carousel:hover .carousel-control-next {
        opacity: 1; /* Tampilkan tombol saat hover */
    }

    @media (max-width: 768px) {
        .carousel-item-1 img {
            width: 100%; /* Buat lebih besar untuk layar kecil */
            height: auto;
            left:auto;
        }
    }

    /* Grid MBKM */
    .card {
        transition: transform 0.3s ease-in-out;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .card-title {
        font-size: 1rem;
        font-weight: bold;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .btn-sm {
        font-size: 0.8rem;
    }                                          

    .card-custom {
        height: 290px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .card-custom:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);

    }

    .card-custom img {
        max-height: 50px;
        margin-top: 20px;
        
    }

    .card-custom h5 {
        margin-bottom: 15px;
        font-weight: bold;
    }

    .btn-custom {
        margin-top: auto;

    }

    .btn-custom:hover {
        transform: scale(1.09); /* Membesar sedikit saat di hover */
        animation: pulse 1s infinite;
    }

    .btn-primary,
    .btn-primary:active{
        background-color: #253b19 !important; 
        border-color: #253b19 !important;
        color: #fff !important;
    }

    .btn-primary:hover {
        background-color: #4a6132 !important; 
        border-color: #4a6132 !important;
        color: #fff !important;
    }

    .card {
        transition: transform 0.3s ease-in-out;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .card-title {
        font-size: 1rem;
        font-weight: bold;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .btn-sm {
        font-size: 0.8rem;
    }

    .mbkm-news {
        background-image: url("/Asset/newsection.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* MBKM News Section */
/* MBKM News Section */

.mbkm-news h2, .mbkm-programs h2 {
    font-size: 2rem; /* Adjust font size as needed */
    font-weight: bold;
    margin-bottom: 0.1rem;
    position: relative;
    padding-bottom: 0.5rem; /* Adds spacing between the text and the line */
    text-align: center;
    color: #333; /* Optional: Change the heading color */
}

.mbkm-news h2::after, .mbkm-programs h2::after {
    content: ""; /* Required for the pseudo-element to render */
    display: block;
    width: 120px; /* Width of the horizontal line */
    height: 4px; /* Thickness of the line */
    background: linear-gradient(90deg, #253b19, #4a6132); /* Gradient effect */
    border-radius: 10px; /* Rounded edges for a modern look */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    margin: 0.8rem auto; /* Center the line and add spacing */
    margin-bottom: 30px;
}

@media (max-width : 768px){
    .mbkm-programs{
        padding: 5px;
    }
}

    /* End Grid MBKM */

    /* News MBKM */
    .news-carousel .card {
        height: 100%;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border-radius: 15px; /* Menambahkan radius pada card */
        overflow: hidden; /* Memastikan konten tidak keluar dari radius */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .news-carousel .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .news-carousel .card-img-top {
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 15px; /* Menyesuaikan radius pada gambar */
        border-top-right-radius: 15px;
    }

    .news-carousel .card-body,
    .news-carousel .card-footer {
        padding: 15px; /* Menambahkan padding untuk konten */
    }

    .news-carousel .card-footer {
        background-color: transparent; /* Menghilangkan background default footer */
        border-top: none; /* Menghilangkan border default footer */
    }

    .news-carousel .btn-sm {
        font-size: 0.8rem;
        border-radius: 20px; /* Membuat tombol lebih rounded */
        padding: 0.25rem 0.75rem;
    }

    .news-popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        overflow-y: auto;
    }

    .news-popup {
        position: relative;
        background-color: #e8e9e0;
        margin: 5% auto;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        width: 90%;
        max-width: 800px;
        max-height: 100vh; /* Limit height to 90% of viewport height */
        overflow-y: auto; /* Allow scrolling if content is too long */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .news-popup .popup-image {
        width: 100%;
        height: auto;
        max-height: 70vh; /* Limit image height to 50% of viewport height */
        object-fit: contain; /* Ensure entire image is visible */
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .news-popup h3 {
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .news-popup p {
        font-size: 16px;
        line-height: 1.6;
    }

    .close-popup {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-popup:hover {
        color: #000;
    }

    .swiper-wrapper-container {
        position: relative;
        margin: 30px;

    }

    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        opacity: 0; 
        visibility: hidden; 
        transition: opacity 0.3s ease, visibility 0.3s ease; 
    }

    .swiper-button-next, .swiper-button-prev  {
        font-weight: bold;
        color: #253b19 !important;
    }

    .mbkm-news:hover .swiper-button-next,
    .mbkm-news:hover .swiper-button-prev {
        opacity: 1; 
        visibility: visible;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: translateY(-50%) scale(1.1); 
        transition: transform 0.2s ease; 
    }

    @media (max-width: 768px) {
        .swiper-wrapper-container {
            margin: 5px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            position: absolute;
            top: 80%;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .news-popup {
            width: 95%;
            margin: 5% auto;
            padding: 15px;
        }

        .news-popup h3 {
            font-size: 20px;
        }

        .news-popup p {
            font-size: 14px;
        }

        .news-popup .popup-image {
            max-height: 50vh;
        }
    }

    @media (max-width: 480px) {
        .news-popup {
            margin: 5% auto;
        }

        .news-popup h3 {
            font-size: 18px;
        }

        .news-popup .popup-image {
            max-height: 40vh;
        }
    }
    /* End News MBKM */

    /* mbkm terbaik */
    .container-mbkmterbaik {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .mbkm-terbaik {
        display: flex;
        align-items: center;
        padding: 10px 0;
        background-color: #fff;
      }
  
      .mbkm-terbaik-wrapper {
        margin: 50px;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
      }
  
      .mbkm-terbaik-image {
        flex: 1;
        min-width: 400px;
      }
  
      .mbkm-terbaik-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      }
  
      .mbkm-terbaik-text {
        color:#000;
        margin-left: 20px;
        flex: 1.5;
        min-width: 300px;
      }
  
      .mbkm-terbaik-text h2 {
        font-size: 2rem;
        color: #000;
        margin-bottom: 10px;
      }
  
      .mbkm-terbaik-text p {
        margin-top: 25px;
        font-size: 1rem;
        color: #000;
        line-height: 1.8;
        margin-bottom: 20px;
      }
  
      .mbkm-terbaik-button {
        margin-top: 10px;
        display: inline-block;
        padding: 10px 20px;
        background-color: #253b19;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        transition: background-color 0.3s ease;
      }
  
      .mbkm-terbaik-button:hover {
        background-color: #4a6132;
      }

      @media (max-width: 768px) {
        .mbkm-terbaik {
          flex-direction: column;
          text-align: center;
        }
      
        .mbkm-terbaik-wrapper {
          margin: 5px;
          margin-top: 30px;
          margin-bottom: 30px;
        }
      
        .mbkm-terbaik-image {
          min-width: 100%;
        }
      
        .mbkm-terbaik-text {
          margin-left: 0;
        }
      
        .mbkm-terbaik-text h2 {
          font-size: 1.8rem;
        }
      
        .mbkm-terbaik-text p {
          font-size: 0.9rem;
        }
      
        .mbkm-terbaik-button {
          padding: 8px 16px;
        }
      }
      /* end mbkm terbaik */

    /* Panduan MBKM */
    .panduan-card {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        margin-bottom: .8rem;
    }

    .panduan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .panduan-card .card-body {
        padding: 1.5rem;
    }

    .panduan-card .card-title {
        color: #253b19;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .panduan-card .card-text {
        color: #6c757d;
        font-size: 0.9rem;
    }

    .panduan-card .btn-download {
        background-color: #253b19;
        border: none;
        padding: 0.5rem 1rem;
        color: white;
        font-weight: 500;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .panduan-card .btn-download:hover {
        background-color: #4a6132;
        color:white;
    }

    .panduan-icon {
        font-size: 2rem;
        color: #253b19;
    }
    /* End Panduan MBKM */

    /* Kurikulum MBKM */
    .kurikulum-container {
        padding: 2rem 0;
    }
    .kurikulum-list {
        list-style-type: none;
        padding: 0;
    }
    .kurikulum-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .kurikulum-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    .kurikulum-content {
        display: flex;
        align-items: center;
        padding: 1rem;
    }
    .kurikulum-icon {
        font-size: 2rem;
        color: #253b19;
        margin-right: 1rem;
    }
    .kurikulum-title {
        flex-grow: 1;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    .btn-download {
        background-color: #253b19;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.7s ease;
        font-size: 0.9rem;
    }
    .btn-download:hover {
        background-color: #4a6132;
        color: #fff;
    }
    .search-container {
        margin-bottom: 2rem;
    }
    .search-input {
        border-radius: 20px 0 0 20px;
        border: 1px solid #ced4da;
    }
    .search-button {
        border-radius: 0 20px 20px 0;
        background-color: #253b19;
        color: white;
    }
    @media (max-width: 768px) {
        .kurikulum-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
    }
    /* End Kurikulum MBKM */

    /* Survey Kepuasan */
    .survey-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 1.5rem;
        overflow: hidden;
      }
      .survey-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      }
      .survey-card-header {
        background-color: #253b19;
        color: white;
        padding: 1rem;
      }
      .survey-card-body {
        padding: 1.5rem;
      }
      .survey-icon {
        font-size: 2rem;
        color: #253b19;
        margin-bottom: 1rem;
      }
      .survey-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
      }
      .survey-description {
        color: #6c757d;
        margin-bottom: 1rem;
      }
      .survey-link {
        color: #253b19;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }
      .survey-link:hover {
        color: #4a6132;
      }
      /* End Survey Kepuasan */

      /* DOKUMEN (DOWNLOAD, SK PROGRAM MBKM) */
      .table-container {
        font-family: 'Montserrat', sans-serif;
      }

      .table-responsive {
        overflow-x: auto;
      }

      .table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .table thead th {
        background-color: #253b19;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        padding: 12px;
      }

      .table tbody tr:nth-of-type(even) {
        background-color: #f8f9fa;
      }

      .table tbody td {
        padding: 12px;
        vertical-align: middle;
      }

      .btn-download {
        background-color: #253b19;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
      }

      .btn-download:hover {
        background-color: #253b19;
        color: white;
      }

      @media (max-width: 768px) {
        .table thead {
          display: none;
        }

        .table tbody tr {
          display: block;
          margin-bottom: 1rem;
          border: 1px solid #dee2e6;
          border-radius: 8px;
        }

        .table tbody td {
          display: block;
          text-align: right;
          padding: 0.5rem;
        }

        .table tbody td::before {
          content: attr(data-label);
          float: left;
          font-weight: bold;
          text-transform: uppercase;
        }
      }

      /* Tambahkan gaya untuk input pencarian */
      .search-container {
        margin-bottom: 20px;
        text-align: right;
        padding-top: 20px; /* Padding di atas fitur pencarian */
      }

      .search-input {
        padding: 8px;
        border-radius: 4px;
        border: 1px solid #ccc;
        width: 200px;
      }

      /* Gaya untuk tombol Previous dan Pagination */
      .download-pagination .page-link {
        color: #253b19;
        border: 1px solid #253b19;
        border-radius: 4px;
        padding: 8px 12px;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .download-pagination .page-link:hover {
        background-color: #253b19;
        color: white;
      }

      /* Gaya khusus untuk item aktif */
      .download-pagination .active .page-link {
        background-color: #253b19;
        color: white;
        border-color: #253b19;
      }

      .download-pagination .active .page-link:hover {
        background-color: #253b19;
        color: white;
      }

      /* Struktur Organisasi */
      .so-org-chart {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .so-level {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 30px;
        position: relative;
    }

    .so-box {
        background-color: #fff;
        border: 2px solid #253b19;
        border-radius: 8px;
        padding: 15px;
        width: 280px; /* Increased width */
        max-width: 95%;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
    }

    .so-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .so-title {
        background-color: #253b19;
        color: white;
        padding: 8px;
        border-radius: 4px;
        margin-bottom: 10px;
        font-weight: bold;
        font-size: 0.9em;
    }

    .so-name {
        font-size: 0.8em;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .so-connector {
        position: absolute;
        background-color: #253b19;
        z-index: 1;
    }

    .so-connector-vertical {
        width: 2px;
        height: 30px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .so-connector-horizontal {
        height: 2px;
        width: 50%;
        left: 25%;
        bottom: -1px;
    }

    .so-split {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .so-split .so-box {
        margin-bottom: 20px;
    }

    @media (min-width: 768px) {
        .so-split {
            flex-direction: row;
            justify-content: space-around;
        }

        .so-split .so-box {
            margin-bottom: 0;
        }

        .so-split .so-connector-horizontal {
            width: 50%;
            left: 25%;
            top: -15px;
        }
    }

    @media (max-width: 767px) {
        .so-split .so-connector-horizontal {
            height: 30px;
            width: 2px;
            left: 50%;
            top: -30px;
        }
    }

    @media (max-width: 480px) {
        .so-box {
            width: 220px; /* Adjusted for mobile */
            padding: 12px;
        }

        .so-title {
            font-size: 0.8em;
        }

        .so-name {
            font-size: 0.7em;
        }
    }
    /* End Struktur Organisasi */

    /* Visi Misi */
    .vision-mission-section {
        padding: 50px 0;
        background-color: #e8e9e0;
    }

    .vision-mission-title {
        position: relative;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        width: 100%;
    }


    .feedback-section {
        background-color: #fff;
        padding: 80px 0;
    }

    .accordion-button {
        background-color: #253b19;
        color: white;
        box-shadow: none; /* Remove the blue shadow */
        
    }

    /* Saat dihover, ubah warna tombol */
    .accordion-button:hover {
        background-color: #4a6132;
        color: #fff;
        
    }

    .accordion-collapse {
        overflow: hidden;
    }

    /* Menambahkan animasi saat accordion dibuka dengan animasi turun dari atas */
    .accordion-collapse.show {
        max-height: 200px;
        opacity: 1;
    }

    .accordion-button:not(.collapsed) {
        background-color: #4a6132; /* New color when opened */
        color: #e8e9e0; /* Change text color if needed */
    }

    .accordion-button:focus {
        box-shadow: none; /* Remove focus shadow */
        outline: none; /* Remove outline */
    }

    .icon-box {
        color: #007bff;
        margin-bottom: 1rem;
    }

    .border-title {
        border-bottom: 4px solid #253b19;
        margin-bottom: 1rem;
        padding-bottom: 1.5rem;
    }

    .tujuan-list {
        list-style-type: disc;
        padding-left: 20px;
        font-size: 1rem;
    }

    .tujuan-list li {
        margin-bottom: 10px;
    }

    .vm-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .vm-card {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        overflow: hidden;
    }

    .vm-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .vm-card-header {
        background-color: #253b19;
        color: #fff;
        padding: 20px;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .vm-card-body {
        padding: 20px;
    }

    .vm-icon {
        font-size: 2rem;
        margin-right: 10px;
        color: #fff;
    }

    .ts-section {
        background-color: #e8e9e0;
        padding: 60px 0;
    }

    .ts-title {
        position: relative;
        display: inline-block;
        margin-bottom: 30px;
        font-size: 2rem;
        font-weight: 700;
    }

    .ts-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 3px;
        background-color: #253b19;
    }

    .ts-list {
        list-style-type: none;
        padding-left: 0;
    }

    .ts-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .ts-list li::before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #253b19;
    }

    @media (max-width: 768px) {
        .vm-card, .ts-section {
            margin-bottom: 30px;
        }
    }
    /* End Visi Misi */

    /* sop */
        h2 {
        margin-top: 20px; /* Menambahkan jarak atas */
      }

      .table-responsive {
        overflow-x: auto;
      }

      .table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .table thead th {
        background-color: #253b19;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        padding: 12px;
      }

      .table tbody tr:nth-of-type(even) {
        background-color: #f8f9fa;
      }

      .table tbody td {
        padding: 12px;
        vertical-align: middle;
      }

      .btn-download {
        background-color: #253b19;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
      }

      .btn-download:hover {
        background-color: #253b19;
        color: white;
      }

      @media (max-width: 768px) {
        .table thead {
          display: none;
        }

        .table tbody tr {
          display: block;
          margin-bottom: 1rem;
          border: 1px solid #dee2e6;
          border-radius: 8px;
        }

        .table tbody td {
          display: block;
          text-align: right;
          padding: 0.5rem;
        }

        .table tbody td::before {
          content: attr(data-label);
          float: left;
          font-weight: bold;
          text-transform: uppercase;
        }
      }

   