html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.cms-header {
    width: 100%;
    background: #ddd;
}

.cms-footer {
    width: 100%;
    margin-top: 20px;
    background: #ddd;
}

.cms-menu-orizz {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: darkgray;
    box-sizing: border-box;
}

    .cms-menu-orizz a {
        text-decoration: none;
        padding: 8px 12px;
        color: white;
    }

        .cms-menu-orizz a:hover {
            background: #ddd;
        }

.cms-main {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.cms-menu-vert {
    width: 15%;
    min-width: 180px;
    background: white;
    padding: 10px;
    box-sizing: border-box;
}

    .cms-menu-vert a {
        display: block;
        padding: 8px;
        color: blue;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
    }

        .cms-menu-vert a:hover {
            background: #e8e8e8;
        }

.cms-content {
    width: 85%;
    padding: 15px;
    box-sizing: border-box;
}

.doc-box {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    background: white;
    border-radius: 9px;
}

.page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b1adad; /* colore sfondo */
    color: blue; /* testo leggibile */
    padding: 5px 5px; /* spazio interno */
    border-radius: 6px; /* opzionale */
    font-size: 24px;
}

.doc-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: lightgray; /* colore sfondo */
    color: blue; /* testo leggibile */
    padding: 5px 5px; /* spazio interno */
    border-radius: 6px; /* opzionale */
}

.data {
    text-align: right;
}

.doc-body {
    padding: 12px;
}
