/* css/sheet.css */
#sheet-viewer-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    overflow: hidden !important;
    background: #02050c;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

#luckysheet-wrapper {
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#luckysheet-container {
    margin: 0;
    padding: 0;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
}

/* 修正 Luckysheet 預設字體顏色可能被 IDE 覆寫的問題 */
.luckysheet-content {
    color: #333333;
}

.sheet-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}