/* rcp-total-details-responsive.css */

/* Basic table styling */
.rcp_registration_total table {
    width: 100%;
    border-collapse: collapse;
}

.rcp_registration_total th,
.rcp_registration_total td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.rcp_registration_total thead {
    background-color: #f2f2f2;
}

.rcp_registration_total tfoot {
    background-color: #f9f9f9;
    font-weight: bold;
}

/* Responsive styling for mobile devices */
@media (max-width: 600px) {
    /* Make each row a flex container that wraps its cells */
    .rcp_registration_total tbody tr,
    .rcp_registration_total tfoot tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    /* Each cell will take full width */
    .rcp_registration_total tbody td,
    .rcp_registration_total tfoot td {
        flex: 1 1 100%;
        text-align: left;
        box-sizing: border-box;
    }
    /* Optionally, style the first cell as a label */
    .rcp_registration_total tbody td:first-child,
    .rcp_registration_total tfoot td:first-child {
        font-weight: bold;
        background-color: #f9f9f9;
        padding: 10px;
    }
}
