/* VDFF Front Styles */

.vdff-voting-gallery,
.vdff-ranking-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.vdff-film-card,
.vdff-ranking-card {
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.vdff-film-card img,
.vdff-ranking-card img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.vdff-vote-button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.vdff-vote-button:hover {
    background: #0096dd;
}

.vdff-voting-controls {
    margin-bottom: 15px;
}

.vdff-voting-controls a {
    margin-right: 10px;
    text-decoration: none;
    color: #0073aa;
}

.vdff-voting-controls a:hover {
    text-decoration: underline;
}