/* in questo file è presente tutto il css dell'area riservata (da login alla dashboard con le box):
    10.6 area riservata
*/
/* ------------------------------------------------------------
   10.6 AREA RISERVATA
------------------------------------------------------------ */
.page-content{
    width:90%;
    max-width:850px;      /* era praticamente 100% */
    margin:40px auto;
    background:#d6d6d7;
    border-radius:15px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    padding:35px;
}

.login-box{
    width:100%;
    max-width:340px;
    margin:40px auto;
    background:#f2f5f8;
    border-radius:15px;
    padding:28px;
    box-shadow:0 4px 18px rgba(0,0,0,.10);
}

.login-box input{
    width:100%;
    padding:12px 15px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    font-size:1rem;
    margin-top:6px;
}

.login-box button{
    width:100%;
    padding:14px;
    background:#003366;
    color:white;
    border:none;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
    transition:.25s;
}

.logout-container{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.welcome-user{
    margin-bottom:25px;
}

.info-box{
    background:#ffffff;
    border-left:6px solid #d6a437;
    border-radius:12px;
    padding:25px 30px;
    margin-top:20px;
    margin-bottom:35px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.info-box h3{
    color:#003366;
    margin-bottom:18px;
}

.info-box p{
    margin-bottom:12px;
    line-height:1.7;
}

.info-box code{
    display:block;
    margin:15px auto;
    padding:12px;
    width:fit-content;
    background:#f5f5f5;
    border-radius:8px;
    font-size:1rem;
    font-weight:bold;
    color:#003366;
    letter-spacing:1px;
}

.iban-box{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    align-items:center;
    margin-top:18px;
}

.copy-iban{
    background:#003366;
    color:white;
    border:none;
    border-radius:8px;
    padding:10px 18px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}

.copy-iban:hover{
    background:#004b96;
}

.page-content{
    max-width:1200px;
}

.documents-grid{
    grid-template-columns:repeat(3,1fr);
}

.area-riservata-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.area-riservata-header .section-title {
    margin: 0;
}

.logout-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #003f75;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.2s ease;
}

.logout-btn:hover {
    background-color: #002f59;
    transform: translateY(-2px);
}