/* Ensure the table is responsive */
.ccg-discount-codes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.ccg-discount-codes-table th,
.ccg-discount-codes-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.ccg-discount-codes-table th {
    font-weight: bold;
}

.ccg-discount-codes-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Social media icons */
.ccg-discount-codes-table td a span.dashicons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ccg-discount-codes-table thead {
        display: none;
    }

    .ccg-discount-codes-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
    }

    .ccg-discount-codes-table td {
        display: block;
        text-align: right;
        padding: 0.5rem;
        border: none;
        border-bottom: 1px solid #ddd;
    }

    .ccg-discount-codes-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: capitalize;
    }

    .ccg-discount-codes-table td:last-child {
        border-bottom: 0;
    }
}