/* CSS for Voting Page */

#voting-wrapper {
    padding: 20px;
}

.category {
    margin-bottom: 30px;
}

.category h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.gallery {
    display: flex;
    grid-template-columns: repeat(autofill, minmax(150px, 1fr));
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap; /* allow wrapping if necessary */
    padding: 10px;
    margin-bottom: 15px;
}

.gallery-item {
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rbga(0, 0, 0, 0.1);
    text-align: center;
    width: 30%; /* ensure images fit in the row */
}

.gallery-item img {
    width: 100%; /* make the images responsive */
    height: auto;
    display: block;
    margin: 0 auto; /* center the image */
}

.gallery-item label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.gallery-item input[type="radio"] {
    display: inline-block !important;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 20px !important;; /* set a size for the radio button */
    height: 20px !important; /* set a size for the radio button */
    accent-color: #007bff; /* color the radio button for better visibility */
}

.actions {
    list-style: none;
    padding: 0;
}

.actions li {
    display: inline-block;
    margin-right: 10px;
}