/* Grundlegendes Styling */
.voting-card {
    display: flex;
    align-items: center;
    padding: 8px;
    max-width: 600px;
    margin: 6px auto;
}

.voting-card img {
    width: 160px;
    height: auto;
}

.voting-card-content {
    flex: 1;
    padding-left: 16px;
}

.voting-card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.voting-card p {
    font-size: 14px;
    color: #555;
}

.voting-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.vote-count {
    background: #eee;
    padding: 8px 12px;
}

.vote-button {
    background: #66a80f;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

/* Responsive Design für Mobile */
@media (max-width: 600px) {
    .voting-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 12px;
    }

    .voting-card img {
        width: 100%;
    }

    .voting-card-content {
        padding-left: 0;
    }

    .voting-card .img-cont {
        margin-bottom: 12px;
    }

    .vote-button, .vote-count {
        width: 100%;
    }

    .voting-card-footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* Header */
.competition-header {
    width: 100%;
    text-align: center;
    background-image: url(/assets/img/kochwettbewerb/header-940.jpg);
}
@media (max-width: 600px) {
    .competition-header {
        background-image: url(/assets/img/kochwettbewerb/header-600.jpg);
    }
}
@media (max-width: 480px) {
    .competition-header {
        background-image: url(/assets/img/kochwettbewerb/header-480.jpg);
    }
}
@media (max-width: 400px) {
    .competition-header {
        background-image: url(/assets/img/kochwettbewerb/header-400.jpg);
    }
}

@media (max-width: 480px) {
    .competition-header-logo {
        margin: 0 -10px;
    }
}
