
    .hidden {
        display: none;
    }

    .toggle-container {
        display: flex;
        justify-content: center;
        grid-column: 1 / -1;

    }

    /* Memastikan tombol tetap di tengah */
    .show-more-btn {
        display: block;
        margin: 20px auto;
        /* Pusatkan tombol */
        padding: 10px 20px;
        background: #CC194C;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
        text-align: center;
    }

    /* Hover effect */
    .show-more-btn:hover {
        background: #a3153c;
    }

    #appsContainer {
        text-align: center;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        background-color: #f8f9fa;
        color: #000;
    }


    .portal-container {
        width: 100%;
        min-height: 100vh;
        font-family: "Montserrat", sans-serif;
        background-color: #f8f9fa;
    }


    .span-typepublic {
        color: #18b8df;
        padding: 4px 8px;
        border-radius: 1234px;
        font-size: 12px;
        font-weight: 600;
        background-color: #f0fdfc;
    }

    .span-typedownload {
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        background-color: #00b496;
        text-decoration: none;
        /* Menghilangkan underline */
        display: inline-block;
        /* Agar padding bekerja lebih baik */
    }

    .span-typeother {
        color: #666;
        padding: 4px 8px;
        border-radius: 1234px;
        font-size: 12px;
        font-weight: 600;
        background-color: #eeefef;
    }

    /* Header Styles */
    .header {
        background: url("https://cdn.builder.io/api/v1/image/assets/9c26905c42de48428f7b44cae0e057f2/a09964a873626d7360b18a85dfbe65786d358a04e8c78c79aa8b49e7c078b711?placeholderIfAbsent=true") no-repeat center center;
        background-size: cover;
        height: 230px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-content {
        text-align: center;
    }

    .portal-text {
        color: #fff;
        font-size: 30px;
        margin-bottom: 20px;
        font-weight: normal;
    }

    .portal-logo {
        width: 165px;
    }

    /* Section Container Styles */
    .section-container {
        padding: 20px 56px;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 32px;
        border-bottom: 1px solid #dde1eb;
        margin-bottom: 24px;
        justify-content: space-between;
    }

    .section-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        color: #23262a;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        margin-left: 8px;
    }

    .filter-nav {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .filter-btn {
        border-radius: 100px;
        border: 1px solid #cc194c;
        padding: 8px 12px;
        font-size: 12px;
        font-family: Montserrat, sans-serif;
        color: #cc194c;
        background: none;
        cursor: pointer;
    }

    .filter-btn.active {
        background-color: #cc194c;
        color: white;
    }

    .filter-btn_doc {
        border-radius: 100px;
        border: 1px solid #cc194c;
        padding: 8px 12px;
        font-size: 12px;
        font-family: Montserrat, sans-serif;
        color: #cc194c;
        background: none;
        cursor: pointer;
    }

    .filter-btn_doc.active {
        background-color: #cc194c;
        color: white;
    }


    /* Cards Grid Styles */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
    }

    .card {
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
        padding: 24px;
        background-color: #fff;
    }

    .card-image {
        width: 100%;
        height: 173px;
        border-radius: 12px;
        object-fit: cover;
        background-color: #dedede;
    }

    .card-image-placeholder {
        width: 100%;
        height: 173px;
        border-radius: 12px;
        background-color: #dedede;
    }

    .card-content {
        margin-top: 24px;
    }

    .card-title {
        font-size: 18px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 4px;
        text-align: left;
    }

    .card-description {
        color: #666;
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 24px;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;

        /* Atur tinggi tetap untuk 5 baris */
        line-height: 1.5;
        /* Sesuaikan dengan tinggi per baris */
        min-height: calc(1.5em * 6);
        /* 5 baris */
        max-height: calc(1.5em * 6);
        overflow: hidden;
    }

    .card-tags {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
    }

    .tag {
        display: flex;
        align-items: center;
        gap: 2px;
        font-size: 10px;
        font-weight: 500;
    }

    .tag-icon {
        width: 16px;
        height: 16px;
    }

    .card-buttons {
        display: flex;
        gap: 16px;
    }

    .btn-primary {
        color: #fff;
        border: 1px solid #cc194c;
        border-radius: 100px;
        padding: 8px 12px;
        font-size: 12px;
        cursor: pointer;
        background-color: #cc194c;
    }

    .btn-secondary {
        color: #cc194c;
        border: 1px solid #cc194c;
        background: transparent;
        border-radius: 100px;
        padding: 8px 12px;
        font-size: 12px;
        cursor: pointer;
    }

    .show-more {
        display: block;
        border-radius: 6px;
        border: 1px solid #cc194c;
        background: #f8f9fa;
        padding: 8px 12px;
        font-family: Montserrat, sans-serif;
        font-size: 12px;
        color: #cc194c;
        margin-top: 15px;
        margin-bottom: 20px;
        width: 158px;
        cursor: pointer;
        display: block;
        /* margin: 40px auto 0; */
        text-align: center;
    }

    /* Documents Grid Styles */
    .documents-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .document-card {
        border-radius: 24px;
        padding: 24px;
        position: relative;
        background-color: #fff;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    }

    .document-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
    }

    .document-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .document-type {
        color: #cc194c;
        font-family: "Source Code Pro", monospace;
        font-size: 18px;
        letter-spacing: 1.44px;
    }

    .document-typeo {
        color: #666;
        font-family: "Source Code Pro", monospace;
        font-size: 18px;
        letter-spacing: 1.44px;
    }

    .document-date {
        color: rgba(102, 102, 102, 0.6);
        font-family: "Source Code Pro", monospace;
        font-size: 12px;
        margin-left: auto;
    }

    .document-title {
        font-size: 18px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 4px;
    }

    .document-description {
        color: #666;
        font-size: 14px;
        font-weight: 300;
        margin-right: 40px;
    }

    .download-icon-wrapper {
        position: absolute;
        right: 24px;
        bottom: 24px;
        cursor: pointer;
    }

    .download-icon {
        width: 50px;
        height: 50px;
    }

    /* Table styles */
    .table-container {
        margin-top: 16px;
        overflow-x: auto;
        background-color: #fff;
        border-radius: 12px;

    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
    }

    .data-table th {
        text-align: left;
        padding: 14px 24px;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        border-bottom: 1px solid #cbd5e1;
    }

    .data-table td {
        padding-left: 24px;
        font-size: 14px;
        font-weight: 400;
        color: #475569;
        border-bottom: 1px solid #e2e8f0;
    }

    /* File items */
    .file-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .file-icon {
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 123px;
    }

    .pdf-icon {
        background-color: #f0fdf4;
    }

    .folder-icon {
        background-color: #eef2ff;
    }

    .file-thumbnail {
        width: 40px;
        height: 40px;
        border-radius: 123px;
        object-fit: cover;
    }

    .file-info {
        display: flex;
        flex-direction: column;
    }

    .file-name {
        font-size: 14px;
        font-weight: 700;
        color: #475569;
        /* padding-top: 18px; */
    }

    .file-size {
        font-size: 14px;
        font-weight: 400;
        color: #475569;
        margin-top: -10px;
    }

    /* File type badge */
    .file-type {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        /* padding: 4px 8px; */
        border-radius: 1234px;
    }

    .public {
        color: #18b8df;
        background-color: #f0fdfc;
    }

    /* Action icon */
    .action-icon {
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 123px;
        cursor: pointer;
    }

    .status-public {
        color: #18b8df;
        padding: 4px 8px;
        border-radius: 1234px;
        font-size: 12px;
        font-weight: 600;
        background-color: #f0fdfc;
    }

    .status-other {
        color: #666;
        padding: 4px 8px;
        border-radius: 1234px;
        font-size: 12px;
        font-weight: 600;
        background-color: #eeefef;
    }

    .file-actions {
        display: flex;
        justify-content: center;
    }

    .td-modified,
    .td-type {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        color: #475569;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .section-container {
            padding: 16px;
        }

        .cards-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }

        .documents-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .header {
            height: 180px;
        }

        .portal-text {
            font-size: 24px;
        }

        .portal-logo {
            width: 120px;
        }

        .section-container {
            padding: 12px;
        }

        .card {
            padding: 16px;
        }

        .document-card {
            padding: 16px;
        }

        .files-table {
            font-size: 12px;
        }

        .table-header,
        .table-row {
            padding: 10px 16px;
            grid-template-columns: 3fr 2fr 2fr 2fr;
        }
    }

    /* Specific tag styles */
    .need-vpn {
        color: #cc194c;
    }

    .satellite {
        color: #1996cc;
    }

    .ldap {
        color: #ea5a2f;
    }

    .core-app {
        color: #00b496;
    }

    .file-icon-wrapper.warning {
        background-color: rgba(245, 158, 11, 0.1);
    }

    .file-icon-wrapper.success {
        background-color: rgba(34, 197, 94, 0.1);
    }

    .file-icon-wrapper.brand {
        background-color: rgba(79, 70, 229, 0.1);
    }
