/* Stealth mode styling to mimic Google Sheets */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

#chatContainer {
    display: none; /* Hide chat when in stealth mode */
}

#fakeSheet {
    display: block;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f1f1f1;
}

#stealthMode {
    font-family: Arial, sans-serif;
}
