/* style.css */

/* General table styling */
.vpp-vote-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color:white;
}

.vpp-vote-table a{
    color:white;
}

.vpp-vote-table th,
.vpp-vote-table td {
    border: 1px solid #9D2235;
    text-align: left;
    padding: 10px;
}

/* Header styling */
.vpp-vote-table th {
    background-color: #9D2235;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.vpp-vote-table th a {
    color: #fff;
    text-decoration: none;
}

.vpp-vote-table th a:hover {
    text-decoration: underline;
}

/* Row styling */
.vpp-vote-table tbody tr:nth-child(even) {
    background-color: transparent;
}

.vpp-vote-table tbody tr:hover {
    background-color: #00000063;
}

/* Active sorting indicator */
.vpp-vote-table th.sort-ASC::after {
    content: " ▲";
    font-size: 12px;
    margin-left: 5px;
    margin-top:-5px
}

.vpp-vote-table th.sort-DESC::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 5px;
    margin-top:-5px
}


/* Pagination styling */
.vpp-pagination {
    text-align: center;
    margin: 20px 0;
}

.vpp-pagination a,
.vpp-pagination span {
    color: #9D2235;
    text-decoration: none;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 3px;
    display: inline-block;
}

.vpp-pagination a:hover {
    background-color: #9D2235;
    color: #fff;
}

.vpp-pagination .current {
    background-color: #9D2235;
    color: #fff;
    border-color: #9D2235;
}
