/* documentcss.css */

/* Reuse global page style */
.page {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #ececec;
    padding: 20px;
}

.page .content {
    max-width: 900px;
    margin: 0 auto;
}

/* Titles */
.page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page h2 {
    font-size: 1.6rem;
    margin-top: 15px;
}

/* Divider */
.page hr {
    border: 0;
    height: 2px;
    background-color: #ccc;
    margin-bottom: 20px;
}

/* Document links */
.page h2 a {
    color: #34495e;
    text-decoration: none;
}

.page h2 a:hover {
    text-decoration: underline;
    color: #2c3e50;
}

/* Document list styling (PDF list) */
.page ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.page ul li {
    padding: 10px 12px;
    margin-bottom: 6px;
    background-color: #f7f7f7;
    border-left: 4px solid #ccc;
}

.page ul li a {
    color: #34495e;
    text-decoration: none;
    display: block;
}

.page ul li a:hover {
    text-decoration: underline;
    color: #2c3e50;
    background-color: #eeeeee;
}


/* Header row with back button and title */
.page .page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* Back button */
.page .back-button {
    background-color: #f7f7f7;
    color: #34495e;
    border: 1px solid #ccc;
    padding: 6px 12px;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    margin-left: -110px;
}

.page .back-button:hover {
    background-color: #eeeeee;
    color: #2c3e50;
}

/* Keep title aligned nicely */
.page .page-header h1 {
    margin: 0;
}




/* Mobile */
@media (max-width: 600px) {
    .page {
        padding: 15px;
    }

    .page h1 {
        font-size: 2rem;
    }

    .page h2 {
        font-size: 1.4rem;
    }
}
