.snackbarthomas {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.snackbarthomas img {
    max-width: 100%;
    height: auto;
}

.snackbarthomas .title {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 10px;
}

.snackbarthomas .description {
    font-size: 1em;
    margin: 10px 0;
}

.snackbarthomas .question {
    font-weight: bold;
    margin-bottom: 15px;
}

.snackbarthomas .buttons {
    margin-top: 10px;
}

.snackbarthomas .buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

/* Bezorgknop - Groen */
.snackbarthomas .buttons a.bezorgen {
    background-color: #3CA84C;
}

.snackbarthomas .buttons a.bezorgen:hover {
    background-color: #328C40;
}

/* Afhaalknop - Rood */
.snackbarthomas .buttons a.afhalen {
    background-color: #E02222;
}

.snackbarthomas .buttons a.afhalen:hover {
    background-color: #B81C1C;
}

