/* styles.css */

/* Define the grid container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px; /* Gap between items */
}

/* Define the grid items (records) */
.grid-item {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

/* Style the vote button */
.vote-button {
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

/* Style the ranking display */
.ranking {
    font-weight: bold;
}
