﻿.info-row {
    display: flex;
    flex-wrap: wrap; /* va a capo se non c'è spazio */
    gap: 8px; /* distanza tra i box, sia orizzontale che verticale */
    color: grey;
    font-size: 1rem;
    font-weight: 600;
}

.info-item {
    flex: 1 1 200px; /* grow=1, shrink=1, base=200px -> si adattano */    
    padding: 6px 10px;
}

.btn-custom-nol {
    margin-left: auto;
    margin-right: 5px;
    padding: 5px;
    background-color: #006c93;
    font-size: 10px;
    color: white;
    width: fit-content;
    align-self: end;
    text-align: center;
    height: 25px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    transition: background-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

    .btn-custom-nol:hover {
        background-color: #00567a;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .btn-custom-nol:active {
        background-color: #004660;
        transform: scale(0.97);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    }