    .modal_headings {
        margin: 40px 0px 20px 0px;
        font-size: 23px;
        color: #959595 !important;
        text-align: center;
        margin: 41px 0px 39px 0px !important;
    }

    .x53d-create-btn {
        background-color: #0a0;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        padding: 15px 18px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.2s, transform 0.1s;
    }

    .x53d-create-btn:hover {
        background-color: #5a85e0;
        transform: translateY(-1px);
    }

    .x53d-create-btn:active {
        transform: translateY(1px);
    }

    .x53d-overview {
        display: -webkit-box;
        /* for Safari & Chrome */
        -webkit-line-clamp: 2;
        /* limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4em;
        /* adjust depending on your font size */
        max-height: 2.8em;
        /* line-height × number of lines */
        font-size: 12px;
        color: #484848;
    }

    .x53d-asset-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 16px;
        margin-bottom: 16px;
        background: #fff;
    }

    .x53d-asset-card h2 {
        text-align: left;
        margin-bottom: 16px;
    }

    .x53d-asset-card_flex {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .x53d-asset-image img {
        max-width: 150px;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .x53d-asset-details {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
        text-align: left;
        padding: 5px 0px 0px 0px;
    }

    .x53d-asset-details .x53d-detail-row {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        line-height: 1.4;
    }

    .x53d-asset-details .x53d-detail-row i {
        color: #666;
        min-width: 18px;
        /* keeps icons aligned */
        text-align: center;
    }

    .x53d-asset-details .x53d-detail-label {
        font-weight: 600;
        margin-right: 4px;
    }

    /* Responsive for mobile */
    @media (max-width: 450px) {
        .x53d-asset-card_flex {
            flex-direction: column;
            align-items: center;
            text-align: left;
        }

        .x53d-asset-image img {
            max-width: 100%;
        }

        .x53d-asset-details {
            width: 100%;
        }
    }

    .scroller {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px;
        background: #f9f9f9;
        border: 1px solid #ddd;
        white-space: nowrap;
    }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin: 20px 0;
    }

    .pagination .page-link {
        display: inline-block;
        padding: 8px 14px;
        border-radius: 20px;
        background: #f0f0f0;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }

    .pagination .page-link:hover {
        background: #ddd;
        color: #000;
    }

    .pagination .page-link.active {
        background: #007bff;
        color: #fff;
        font-weight: bold;
        pointer-events: none;
    }

  .resource-grid {
    display: block !important;
  }

  @media (max-width: 400px) {
    .resource-grid {
      display: block;
    }
  }



  .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 16px;
    padding: 20px;
  }

