/**
 * Manual Styles
 * Styling for the periodontal status instruction manual.
 * Based on the user's old website design.
 */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700&display=swap');

/* Main wrapper is now div.content (handled in styles.css mainly) */

.manual {
    position: relative;
    margin: auto;
    width: 720px;
    background: white;
    margin-bottom: 50px;
}

/* General p styling within the manual */
.manual p {
    font-family: 'Heebo', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #333333;
    margin-bottom: 15px;
}

.manual-title {
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 22px !important;
    text-align: left;
    font-weight: 400 !important;
    color: #000;
}

.parameter-subtitle {
    margin-top: 50px;
    padding-left: 20px;
    font-weight: bold !important;
    text-align: left;
    font-size: 17px;
    color: #333333;
}

.parameter-sub-subtitle {
    padding-left: 30px;
    font-weight: bold !important;
    font-size: 17px;
    margin-top: 50px;
    text-align: left;
}

.parameter-text {
    padding-left: 40px;
    text-align: left;
}

.parameter-text-formel {
    margin: auto !important;
    margin-left: 40px !important;
    padding: 10px 0px 10px;
    text-align: left;
    font-size: 14px !important;
}

.highlight-formel {
    background-color: rgba(0, 223, 255, 0.10);
    border-radius: 2px;
    padding: 2px 5px 2px 5px;
    display: inline-block;
}

.highlight-formel code {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    color: #333;
}

.parameter-reference {
    font-size: 12px !important;
    color: grey !important;
    padding-left: 40px;
    text-align: left;
}

.manual-image {
    display: block;
    margin: 30px auto;
    /* Centered */
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

/* Red circles for 1, 2, A, B icons */
.manual-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #0c304a;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin: 0 2px;
    vertical-align: middle;
}

@media print {
    .content:has(.manual) {
        display: none !important;
    }
}