
.accordion {
    margin: 20px;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
}

.accordion-header {
    /*background-color: #f7f7f7;*/
    cursor: pointer;
    /*padding: 10px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.accordion-header i {
    margin-left: 10px;
}

.accordion-content {
    display: none;
    padding: 5px;
}

.accordion-content table {
    width: 100%;
    border-collapse: collapse;
}

.accordion-content .accordion-content-table, .accordion-content th, .accordion-content td {
    padding: 1px;
}

.accordion-content:not( .has-background ) th {
    background-color: #fff;
}

.active .accordion-content {
    display: block;
}

  .package-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*margin-bottom: 10px;*/
        /*padding: 10px 0;*/
        /*border-bottom: 1px solid #ccc;*/
    }

    /*.pkg-name {*/
    /*    font-weight: bold;*/
    /*    font-size: 16px;*/
    /*}*/

    .pkg-icon {
        width: 20px;
        height: 20px;
    }

.package-product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
    margin-top: 10px;
}

.product-img {
    display: inline-block;
    width: auto;
    height: auto;
}

.product-img img {
    border-radius: 5px; /* Optional: for rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: for a subtle shadow effect */
    max-width: 100%;
    height: auto;
}

.package-content {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

