/* Centered header for Claiborne Security Systems and related pages */
.css-header {
    text-align: center;
}
/* Global */
body {
    margin: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Times New Roman', Times, serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
    max-width: 100vw;
    overflow-x: auto;
}


/* Header */
header {
    text-align: center;
    border-bottom: 2px solid #336633;
    background: #fff;
    box-shadow: none;
}
header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #336633;
    text-shadow: none;
}
header p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin: 8px 0;
}

/* Main content */
main {
    padding: 24px 18px 90px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
}
main a {
    display: inline-block;
    margin: 12px 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.08rem;
    color: #336633;
    background: none;
    border: none;
    border-radius: 0;
    text-decoration: underline;
    box-shadow: none;
    transition: color 0.2s;
}
main a:hover {
    background: none;
    color: #222;
    text-decoration: underline;
}

/* Tables */
/* Removed duplicate main selector and vertical centering */
    padding: 10px;
    border-bottom: 1px solid #336633;
    text-align: left;
    font-size: 1rem;
    color: #222;
}

th {
    background: #f5f5f5;
    font-size: 1.08rem;
    color: #336633;
    letter-spacing: 1px;
}

caption {
    caption-side: top;
    text-align: center;
    font-weight: 700;
    font-size: 1.12rem;
    padding: 10px 0 14px;
    color: #336633;
    font-family: 'Times New Roman', Times, serif;
}

.mono {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.01rem;
    color: #222;
}

/* Footer */
footer {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 12px;
    border-top: 2px solid #336633;
    background: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.05rem;
    color: #336633;
    box-shadow: none;
    flex-shrink: 0;
}

