.cm-season-prices-wrapper {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    background: #fff;
    margin-top: 10px;
}

.cm-season-prices-header,
.cm-season-prices-row {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 0.7fr 40px; /* zadnja kolona za X */
    gap: 8px;
    align-items: center;
    margin-bottom: 5px;
}

.cm-season-prices-header {
    font-weight: 500;
    margin-bottom: 8px;
}

/* centriraj X u zadnjoj ćeliji */
.cm-season-prices-row > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* gumb za brisanje reda */
.cm-season-prices-remove {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 4px;
    border: none;
    background: #cd0000;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* gumb za dodavanje reda */
.cm-season-prices-add {
    margin-top: 10px;
}

/* Mobile layout */
@media (max-width: 767px) {
    .cm-season-prices-header {
        font-size: 0.9rem;
    }

    .cm-season-prices-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "from to"
            "price min"
            ". remove";
        gap: 6px;
        margin-bottom: 8px;
    }

    .cm-season-prices-row > div:nth-child(1) { grid-area: from; }
    .cm-season-prices-row > div:nth-child(2) { grid-area: to; }
    .cm-season-prices-row > div:nth-child(3) { grid-area: price; }
    .cm-season-prices-row > div:nth-child(4) { grid-area: min; }
    .cm-season-prices-row > div:nth-child(5) { grid-area: remove; justify-content: flex-end; }
}








.cm-season-prices-remove {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 4px;
    background: #cd0000!important;
    border: none;
    color: #fff!important;
    font-weight: 700;
        font-size:16px!important;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-season-prices-add {

    padding: 10px 20px;
    border-radius: 4px;
    background: #cd0000!important;
    border: none;
    color: #fff!important;
    font-weight: 700;
    font-size:15px!important;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px !important;
}


/* Wrapper */
.cm-season-table {
    margin-top: 20px;
}

/* Tablica */
.cm-season-table__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

/* Header */
.cm-season-table__table thead th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8c8c99;
    padding: 8px 10px;
    border-bottom: 1px solid #e5e5ef;
    text-align: left;
}

/* Striped efekt — YOOtheme stil */
.cm-season-table__table tbody tr:nth-child(odd) {
    background: #f7f7fb;      /* svijetlo sivo */
}

.cm-season-table__table tbody tr:nth-child(even) {
    background: #ffffff;       /* bijelo */
}

/* Ćelije */
.cm-season-table__table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

/* Datum – bold */
.cm-season-table__table tbody td:nth-child(1),
.cm-season-table__table tbody td:nth-child(2),
.cm-season-table__table tbody td:nth-child(3),
.cm-season-table__table tbody td:nth-child(4) {
    font-weight: 500;
    text-align: left;
}



/* Mobile */
@media (max-width: 767px) {
    .cm-season-table__table {
        font-size: 0.85rem;
    }

    .cm-season-table__table tbody td {
        padding: 10px 8px;
    }
}