#c27-site-wrapper .i-section .element {
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.07);
}

/* Ticket display for [mylisting_tickets] shortcode */
.mylisting-tickets-shortcode {
    margin: 20px 0;
}

.mylisting-tickets-shortcode .buy-ticket-container {
    margin-bottom: 15px;
}

.mylisting-tickets-shortcode .buttons.button-2.full-width {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.mylisting-tickets-shortcode .buttons.button-2.full-width[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #f5f5f5;
    color: #666;
}

/* Responsive design for ticket buttons */
@media (max-width: 600px) {
    .mylisting-tickets-shortcode .buttons.button-2.full-width {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* Filter container for frontend */
.mylisting-tickets-filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mylisting-tickets-filter-container label {
    margin-right: 10px;
    font-weight: normal;
}

.mylisting-tickets-filter-container select {
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mylisting-tickets-filter-container .button.mylisting-tickets-filter-button {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    background-color: #785f97;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
    min-width: 80px;
    text-align: center;
}

.mylisting-tickets-filter-container .button.mylisting-tickets-filter-button:hover {
    background-color: #5f4b7a;
}

/* Responsive adjustments for filter container */
@media (max-width: 600px) {
    .mylisting-tickets-filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .mylisting-tickets-filter-container select,
    .mylisting-tickets-filter-container .button.mylisting-tickets-filter-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Existing styles for other elements */
.alternate-row {
    background-color: #f1f1f1;
}

.buyers-row {
    background-color: #fff;
}

.buyers-row .widefat tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.buyers-row .widefat tbody tr:nth-child(odd) {
    background-color: #fff;
}

.shop_table.my_account_events_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.shop_table.my_account_events_table th,
.shop_table.my_account_events_table td {
    padding: 10px;
    border: 1px solid #e1e1e1;
    text-align: left;
}

.shop_table.my_account_events_table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.shop_table.my_account_events_table details {
    margin-bottom: 20px;
}

.shop_table.my_account_events_table details summary {
    cursor: pointer;
    font-weight: bold;
    padding: 10px 0;
}

.shop_table.my_account_events_table a.button {
    background-color: #0073aa;
    color: #fff;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
}

.shop_table.my_account_events_table a.button:hover {
    background-color: #005177;
}

@media (max-width: 600px) {
    .shop_table.my_account_events_table th,
    .shop_table.my_account_events_table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}