/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO CENTER */
.logo {
    text-align: center;
}

.logo img {
    height: 50px;
}

/* MENU RIGHT */
.menu {
    position: absolute;
    right: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.menu a:hover {
    color: #007bff;
}

/* ================= PRINT SECTION ================= */
.print-wrapper {
    padding: 20px;
}

.print-title {
    text-align: center;
    margin-bottom: 20px;
}

/* GRID SYSTEM */
.print-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* ITEM */
.print-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .print-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .print-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 30px;
    }

    .menu a {
        font-size: 14px;
    }
}