﻿/* =========================================
   OPERAZIONI DI SALVATAGGIO
========================================= */

.salvataggio-content * {
    box-sizing: border-box;
}

.salvataggio-riga {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 8px;
    margin-bottom: 8px;
    align-items: start;
}

.ora-box {
    background: #163d63;
    color: #f3e6bf;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 7px 6px;
    border-radius: 3px;
    line-height: 1.25;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    align-self: start;
}
.testo-box {
    background: #31506a;
    color: #ffffff;
    padding: 11px 15px;
    line-height: 1.55;
    font-size: 14px;
    border-left: 3px solid #d4b878;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
    .testo-box em {
        color: #f3e6c0 !important;
    }
/* =========================================
   LINK PAGINA SUCCESSIVA
========================================= */

.timeline-next {
    text-align: center;
    margin-top: 60px;
}

.next-button {
    display: inline-block;
    background: #163d63;
    color: #f3e6bf;
    text-decoration: none;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
}

    .next-button:hover {
        background: #0a2238;
        color: #ffffff;
        transform: translateY(-2px);
    }