/* כותרת */
.shows-table-title-wrapper {
    background-color: #ff0000;
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 0;
}

.shows-table-title {
    margin: 0;
    font-family: "sunday", Sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
}

/* טבלה */
#tckts-table table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th {
    background-color: #fff;
}
.shows-repeater-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    font-family:  "sunday", Sans-serif;
  	font-size: 1.3rem;
    margin-top: 0;
}

.shows-table-row {
    border-bottom: 1px solid #eee;
}

.shows-table-cell {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

/* מופעים שעברו */
.show-past {
    opacity: 0.7;
}

/* כפתור רכישת כרטיסים */
.shows-ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 0.5em;
    border-radius: 0px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
a.shows-ticket-button:after
 {
    display: inline-flex;
    content: '';
    background-image: url(/wp-content/uploads/2025/05/אייקון-חץ-למטה-עיגול-אדום.svg);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    margin-right: 0.37em;
    transition: all 0.3s ease;
}

.shows-button:hover a.shows-ticket-button:after {
  transform: rotate(45deg) scale(1.1);
}
.shows-ticket-button:focus {
    background-color: #fff;
    border-bottom: 1px solid #000;
    transform: scale(0.95);
}

/* הודעת אין מופעים קרובים */
.shows-no-shows {
    text-align: center;
    padding: 20px;
    font-family: "Polin", Sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #000;
}

/* רספונסיביות */
@media (max-width: 768px) {
    .shows-repeater-table thead {
        display: none;
    }

    .shows-repeater-table, 
    .shows-repeater-table tbody, 
    .shows-repeater-table tr, 
    .shows-repeater-table td {
        display: block;
        width: 100%;
    }

    .shows-table-row {
        margin-bottom: 20px;
        border-bottom: 2px solid #ddd;
    }

    .shows-table-cell {
        text-align: right;
        padding: 10px 15px;
        position: relative;
    }

    .shows-table-cell::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #666;
    }
}