/* Irmatic Vending Machine Label Styles - Simplified Design */

.irmatic-vending-label-container {
    margin: 10px 0 0 0;
    padding: 0;
}

.irmatic-vending-label {
    display: inline-block;
    padding: 8px 14px;
    background: #BF0114;
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    transition: all 0.3s ease;
    border: 2px solid #BF0114;
    white-space: nowrap;
}

.irmatic-vending-label:hover {
    background: white;
    color: #BF0114;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 1, 20, 0.2);
}

/* Responsywne style */
@media (max-width: 768px) {
    .irmatic-vending-label {
        font-size: 13px;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .irmatic-vending-label {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Integracja z buttons-container */
.buttons-container + .irmatic-vending-label-container {
    margin-top: 15px;
}