<style>
    /* only for card  */

    body {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        background-color: #fff;
    }

    .new_card-container {
        display: flex;
        justify-content: space-between;
        padding: 20px;
    }

    /* Custom CSS to center the modal */
    .modal-dialog {
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* min-height: 100vh; */
    }

    .new_card {
        width: 200px;
        height: 300px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 10px;
        overflow: hidden;
        transition: transform 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .new_card:hover {
        transform: scale(1.05);
    }

    .new_card img {
        width: 100%;
        height: 63%;
        object-fit: cover;
        border-bottom: 1px solid #ddd;
    }

    .new_card .new_content {
        padding: 10px;
        text-align: center;
    }

    .new_card h3 {
        margin: 10px 0 0;
        font-size: 15px;
        visibility: visible;
        transition: visibility 0.3s;
    }

    .new_card:hover h3 {
        visibility: visible;
    }

    .new_card p {
        margin: 10px 0;
        font-size: 14px;
        color: #666;
    }

    .new_card .new_button {
        display: block;
        width: 100%;
        padding: 8px;
        background-color: #f6ab36;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .new_card .new_button:hover {
        background-color: #e1962e;
    }

    .fw_bold {
        font-weight: bold;
    }

    .button-idf-one {
        margin-top: 10px;
        color: #fff;
        background-color: #050505;
        font-size: 14px;
        border-radius: 5px;
        border: 2px solid #050505;
        padding: 5px 20px;
        font-weight: 600;
    }

    .button-idf-one:hover {
        margin-top: 10px;
        color: #050505;
        background-color: #fff;
        font-size: 14px;
        border-radius: 5px;
        border: 2px solid #050505;
        padding: 5px 20px;
        font-weight: 600;
        transition: 0.2s ease-in-out;
    }


    .button-idf-two {
        margin-top: 10px;
        color: #fff;
        background-color: #fd7520;
        font-size: 14px;
        border-radius: 5px;
        border: 2px solid #fd7520;
        padding: 5px 20px;
        font-weight: 600;
    }

    .button-idf-two:hover {
        margin-top: 10px;
        color: #050505;
        background-color: #fff;
        font-size: 14px;
        border-radius: 5px;
        border: 2px solid #fd7520;
        padding: 5px 20px;
        font-weight: 600;
        transition: 0.2s ease-in-out;
    }

    .custom-button {
        display: inline-block;
        cursor: pointer;
        padding: 5px 10px;
        font-size: 16px;
        color: #fd7520;
        font-weight: bold;
        background-color: #fff;
        border: 2px solid #fd7520;
        border-radius: 5px;
        margin-right: 10px;
    }

    .custom-button.selected {
        background-color: #fd7520;
        color: #fff;
    }

    input[type="radio"],
    input[type="checkbox"] {
        accent-color: #fd7520;
    }

    .dark {
        color: #333;
    }

    .orange {
        color: #fd7520;
    }

    .black {
        color: #000000;
    }
</style>
