/*
Theme Name: SSM Minimal Logo
Theme URI:  https://example.com/
Author:     Mohua Tech IT
Author URI: https://example.com/
Description: Minimal theme — nothing but a small school logo fixed at the corner. Print-friendly.
Version:    1.0
License:    GPLv2 or later
Text Domain: ssm-minimal-logo
*/

html, body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    line-height: 1.4;
}

/* container to center content if needed (theme otherwise minimal) */
.site-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

/* Logo: fixed in corner */
.ssm-site-logo {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* control logo size */
.ssm-site-logo img {
    display: block;
    height: 60px;
    width: auto;
}

/* Make sure everything else is plain and printable */
* {
    -webkit-print-color-adjust: exact;
}

/* Print styles: keep logo visible, simplify page */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .ssm-site-logo {
        position: absolute !important;
        top: 10px !important;
        left: 10px !important;
        box-shadow: none !important;
    }
    /* hide admin bar if someone prints while logged in */
    #wpadminbar {
        display: none !important;
    }
}
