.page-title {
    text-align: center;
    padding: 40px 10%;
    background: #f8f9fa;
}

.palmares-filter {
    text-align: center;
    padding: 20px;
}

.palmares-filter label {
    font-weight: bold;
    color: #1E3A8A;
    margin-right: 10px;
}

.palmares-filter select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid #1E3A8A;
    color: #1E3A8A;
    font-weight: bold;
}


/* TABLE */

.palmares-table {
    padding: 20px 5%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#table-palmares {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

#table-palmares th,
#table-palmares td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

#table-palmares th {
    background: #1E3A8A;
    color: #fff;
    text-transform: uppercase;
}


/* small screens: convert into cards */

@media (max-width:600px) {
    .table-responsive {
        overflow: hidden;
    }
    #table-palmares {
        border: 0;
        min-width: 100%;
        display: block;
    }
    #table-palmares thead {
        display: none;
    }
    #table-palmares tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
    }
    #table-palmares tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border: 0;
    }
    #table-palmares tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #1E3A8A;
    }
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}