body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

.navbar {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #343a40;
}

.navbar button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    background: #6c757d;
    color: white;
    border-radius: 4px;
}

.navbar .save {
    background: #28a745;
}

.sheet-container {
    padding: 15px;
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    background: white;
}

td {
    border: 1px solid #ccc;
}

input {
    width: 100px;
    padding: 6px;
    border: none;
    outline: none;
}
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

.navbar {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #343a40;
}

.navbar button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    background: #6c757d;
    color: white;
    border-radius: 4px;
}

.navbar .save {
    background: #28a745;
}

.sheet-container {
    padding: 15px;
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    background: white;
}

td {
    border: 1px solid #ccc;
}

input {
    width: 100px;
    padding: 6px;
    border: none;
    outline: none;
}
@media print {

    /* hide navbar */
    .navbar {
        display: none !important;
    }

    /* remove scroll container */
    .sheet-container {
        overflow: visible;
    }

    /* remove grid borders */
    #sheet td {
        border: none !important;
    }

    /* hide inputs but keep text */
    #sheet input {
        border: none;
        outline: none;
        background: transparent;
        pointer-events: none;
        font-size: 14px;
    }

    /* make table full width */
    #sheet {
        width: 100%;
        border-collapse: collapse;
    }

    body {
        margin: 0;
        padding: 20px;
        font-family: Arial, sans-serif;
    }
}
