/* CSS reset */
html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}
/* End CSS reset */

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    background-color:#FFFFFF;
    font-size: 16px;
    line-height: 2rem;
}

/* definisce lo stile del contenuto della tabella */
#hor-minimalist-b {
    background-color:#FFFFFF;
    font-size: 0.8rem;
    background: #fff;
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}

/* stile delle righe dellea tabella */
#hor-minimalist-b th {
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    padding: 8px;
    border-bottom: 2px solid #C1C1BD;
}

/* stile delle celle della tabella */
#hor-minimalist-b td {
    border-bottom: 1px solid #C1C1BD;
    color: #000000;
    padding: 8px;
}

/* definisce lo stile del contenuto della tabella */
#hor-minimalist-nav {
    font-size: 0.8rem;
    background: #C1C1BD;
}

/* stile dei numeri di paginazione */
#hor-minimalist-nav .page-numbers {
    margin: 0.5rem;
}

/* stile dei titoli di colonna */
.title { 
    font-weight:bold;
    font-size: 14px;
}

/* stile dei link */
a {
    color: blue;
}

/* stile del bottone back */
.btn-back {
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    color: black;
    border-radius: 4px;
    border: 1px solid black;
}

.btn-back:hover {
    background: #C1C1BD;
}