2026-01-06 22:57:00 -03:00
|
|
|
/* =============================================================================
|
2026-01-11 09:56:44 -03:00
|
|
|
GB SHEET - Modern Spreadsheet Styles
|
|
|
|
|
Theme-aware, no sidebar, with AI chat panel
|
2026-01-06 22:57:00 -03:00
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
VARIABLES & BASE
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--sheet-grid-border: var(--sentient-border, #e0e0e0);
|
|
|
|
|
--sheet-header-bg: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
--sheet-cell-selected: var(--sentient-accent, #4285f4);
|
|
|
|
|
--sheet-cell-range: rgba(66, 133, 244, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
MAIN LAYOUT
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.sheet-app {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-direction: column;
|
2026-01-06 22:57:00 -03:00
|
|
|
height: 100vh;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-family: var(
|
2026-01-11 09:56:44 -03:00
|
|
|
--sentient-font-family,
|
2026-01-06 22:57:00 -03:00
|
|
|
-apple-system,
|
|
|
|
|
BlinkMacSystemFont,
|
|
|
|
|
"Segoe UI",
|
|
|
|
|
Roboto,
|
|
|
|
|
sans-serif
|
|
|
|
|
);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
TOOLBAR
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
|
|
|
|
.sheet-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: space-between;
|
2026-01-06 22:57:00 -03:00
|
|
|
padding: 8px 16px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-bottom: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
gap: 16px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
min-height: 52px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-left,
|
|
|
|
|
.toolbar-center,
|
|
|
|
|
.toolbar-right {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-left {
|
2026-01-11 09:56:44 -03:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
min-width: 200px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center {
|
|
|
|
|
flex: 1;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
padding: 4px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center::-webkit-scrollbar {
|
|
|
|
|
height: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: 2px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-right {
|
2026-01-11 09:56:44 -03:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
gap: 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-divider {
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 24px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
margin: 0 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-name-input {
|
|
|
|
|
border: 1px solid transparent;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 250px;
|
|
|
|
|
transition: all 0.2s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-name-input:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-name-input:focus {
|
2026-01-11 09:56:44 -03:00
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
BUTTONS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.btn-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon.active {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon svg {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon strong,
|
|
|
|
|
.btn-icon em,
|
|
|
|
|
.btn-icon u,
|
|
|
|
|
.btn-icon s {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-primary {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
background: var(--sentient-accent, #4285f4);
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover {
|
|
|
|
|
background: var(--sentient-accent-hover, #3367d6);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary:hover {
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
TOOLBAR SELECTS & COLORS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.toolbar-select {
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 6px 8px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: border-color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-select:hover {
|
|
|
|
|
border-color: var(--sentient-text-muted, #999);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-select:focus {
|
2026-01-11 09:56:44 -03:00
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font-family {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 110px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font-size {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 60px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-btn {
|
|
|
|
|
position: relative;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-letter {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 14px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-indicator {
|
2026-01-11 09:56:44 -03:00
|
|
|
position: absolute;
|
|
|
|
|
bottom: 4px;
|
|
|
|
|
left: 6px;
|
|
|
|
|
right: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
height: 3px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: #000000;
|
2026-01-06 22:57:00 -03:00
|
|
|
border-radius: 1px;
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-indicator {
|
|
|
|
|
background: #ffff00;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input {
|
|
|
|
|
position: absolute;
|
2026-01-11 09:56:44 -03:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
COLLABORATORS
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
|
|
|
|
.collaborators {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
gap: -8px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collaborator-avatar {
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border-radius: 50%;
|
2026-01-11 09:56:44 -03:00
|
|
|
border: 2px solid var(--sentient-bg-primary, #ffffff);
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 11px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 600;
|
|
|
|
|
color: white;
|
|
|
|
|
margin-left: -8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collaborator-avatar:first-child {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
MAIN CONTENT AREA
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.sheet-main {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
FORMULA BAR
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.formula-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 6px 12px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-bottom: 1px solid var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 12px;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell-address {
|
|
|
|
|
min-width: 60px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 4px 8px;
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: monospace;
|
2026-01-06 22:57:00 -03:00
|
|
|
text-align: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formula-icon {
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-muted, #999);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-style: italic;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-weight: 500;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formula-input {
|
|
|
|
|
flex: 1;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 6px 10px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 13px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-family: monospace;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
transition: border-color 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formula-input:focus {
|
2026-01-11 09:56:44 -03:00
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.formula-input::placeholder {
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
GRID CONTAINER
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.sheet-grid-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
position: relative;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f8f9fa);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 50px 1fr;
|
|
|
|
|
grid-template-rows: 28px 1fr;
|
2026-01-11 09:56:44 -03:00
|
|
|
min-width: max-content;
|
|
|
|
|
min-height: 100%;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-corner {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-header-bg);
|
|
|
|
|
border-right: 1px solid var(--sheet-grid-border);
|
|
|
|
|
border-bottom: 1px solid var(--sheet-grid-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 30;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
COLUMN HEADERS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.column-headers {
|
|
|
|
|
display: flex;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 20;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-header-bg);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.column-header {
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-right: 1px solid var(--sheet-grid-border);
|
|
|
|
|
border-bottom: 1px solid var(--sheet-grid-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 12px;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-weight: 500;
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
2026-01-06 22:57:00 -03:00
|
|
|
user-select: none;
|
|
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: background 0.1s ease;
|
|
|
|
|
position: relative;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.column-header:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-hover, #e8e8e8);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.column-header.selected {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-cell-selected);
|
2026-01-06 22:57:00 -03:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.column-resize {
|
|
|
|
|
position: absolute;
|
2026-01-11 09:56:44 -03:00
|
|
|
right: -3px;
|
2026-01-06 22:57:00 -03:00
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: col-resize;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 10;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.column-resize:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-cell-selected);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
ROW HEADERS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.row-headers {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: sticky;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 20;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-header-bg);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row-header {
|
|
|
|
|
width: 50px;
|
2026-01-11 09:56:44 -03:00
|
|
|
min-height: 24px;
|
2026-01-06 22:57:00 -03:00
|
|
|
height: 24px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-right: 1px solid var(--sheet-grid-border);
|
|
|
|
|
border-bottom: 1px solid var(--sheet-grid-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-secondary, #666);
|
2026-01-06 22:57:00 -03:00
|
|
|
user-select: none;
|
|
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: background 0.1s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row-header:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-hover, #e8e8e8);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row-header.selected {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-cell-selected);
|
2026-01-06 22:57:00 -03:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
CELLS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.cells-container {
|
|
|
|
|
position: relative;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cells {
|
|
|
|
|
display: grid;
|
2026-01-11 09:56:44 -03:00
|
|
|
grid-template-columns: repeat(26, 100px);
|
|
|
|
|
grid-auto-rows: 24px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell {
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 24px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 0 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-right: 1px solid var(--sheet-grid-border);
|
|
|
|
|
border-bottom: 1px solid var(--sheet-grid-border);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2026-01-11 09:56:44 -03:00
|
|
|
white-space: nowrap;
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: cell;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: background 0.05s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-hover, #f5f5f5);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell.selected {
|
2026-01-11 09:56:44 -03:00
|
|
|
outline: 2px solid var(--sheet-cell-selected);
|
2026-01-06 22:57:00 -03:00
|
|
|
outline-offset: -1px;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 5;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell.in-range {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-cell-range);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell.editing {
|
|
|
|
|
padding: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow: visible;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
outline: 2px solid var(--sheet-cell-selected);
|
|
|
|
|
padding: 0 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
|
|
|
|
font-family: inherit;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
SELECTION & INDICATORS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.selection-box {
|
|
|
|
|
position: absolute;
|
2026-01-11 09:56:44 -03:00
|
|
|
border: 2px solid var(--sheet-cell-selected);
|
|
|
|
|
background: var(--sheet-cell-range);
|
2026-01-06 22:57:00 -03:00
|
|
|
pointer-events: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 10;
|
|
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copy-box {
|
|
|
|
|
position: absolute;
|
2026-01-11 09:56:44 -03:00
|
|
|
border: 2px dashed var(--sheet-cell-selected);
|
2026-01-06 22:57:00 -03:00
|
|
|
pointer-events: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 11;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copy-box.hidden {
|
|
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.autofill-handle {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sheet-cell-selected);
|
|
|
|
|
border: 1px solid var(--sentient-bg-primary, #ffffff);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: crosshair;
|
|
|
|
|
z-index: 15;
|
2026-01-11 09:56:44 -03:00
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cursor-indicators {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2026-01-06 22:57:00 -03:00
|
|
|
pointer-events: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 20;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cursor-indicator {
|
|
|
|
|
position: absolute;
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cursor-label {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -20px;
|
|
|
|
|
left: 0;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: white;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: 3px;
|
2026-01-06 22:57:00 -03:00
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
SHEET TABS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.sheet-tabs-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 0 12px;
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
height: 36px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tabs {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tabs::-webkit-scrollbar {
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tab {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
border-radius: 6px 6px 0 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tab:hover {
|
|
|
|
|
background: var(--sentient-bg-hover, #e8e8e8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tab.active {
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
border-color: var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-bottom-color: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-menu-btn {
|
|
|
|
|
padding: 2px 4px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-tab:hover .tab-menu-btn {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-add-sheet {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-add-sheet:hover {
|
|
|
|
|
background: var(--sentient-bg-hover, #e8e8e8);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
STATUS BAR
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.sheet-status-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 4px 16px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
height: 28px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-left,
|
|
|
|
|
.status-center,
|
|
|
|
|
.status-right {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zoom-control {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-zoom {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-zoom:hover {
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
CHAT PANEL
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.chat-panel {
|
|
|
|
|
width: 320px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-left: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
transition:
|
|
|
|
|
width 0.3s ease,
|
|
|
|
|
opacity 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-panel.collapsed {
|
|
|
|
|
width: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border-bottom: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-avatar {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
135deg,
|
|
|
|
|
var(--sentient-accent, #4285f4),
|
|
|
|
|
#8e44ad
|
|
|
|
|
);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-title h3 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-status {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-close {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-close:hover {
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-messages {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-message {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-direction: column;
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.user {
|
|
|
|
|
align-items: flex-end;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.assistant {
|
|
|
|
|
align-items: flex-start;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble {
|
|
|
|
|
max-width: 90%;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 1.5;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.user .message-bubble {
|
|
|
|
|
background: var(--sentient-accent, #4285f4);
|
|
|
|
|
color: white;
|
|
|
|
|
border-bottom-right-radius: 4px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.assistant .message-bubble {
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
border-bottom-left-radius: 4px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble p {
|
|
|
|
|
margin: 0 0 8px 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble p:last-child {
|
|
|
|
|
margin-bottom: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble ul {
|
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
|
padding-left: 20px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble li {
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-suggestions {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
padding: 8px 16px;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-btn {
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 12px;
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-secondary, #666);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
white-space: nowrap;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.suggestion-btn:hover {
|
|
|
|
|
background: var(--sentient-bg-hover, #e8e8e8);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-input-container {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 12px 16px;
|
|
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
transition: border-color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-input::placeholder {
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-send {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: var(--sentient-accent, #4285f4);
|
|
|
|
|
color: white;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
cursor: pointer;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: background 0.15s ease;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-send:hover {
|
|
|
|
|
background: var(--sentient-accent-hover, #3367d6);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-toggle {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-toggle.has-notification::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 4px;
|
|
|
|
|
right: 4px;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
background: #ea4335;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
CONTEXT MENU
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.context-menu {
|
2026-01-06 22:57:00 -03:00
|
|
|
position: fixed;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-md, 8px);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
2026-01-06 22:57:00 -03:00
|
|
|
min-width: 180px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 6px 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.context-menu.hidden {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 8px 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
2026-01-11 09:56:44 -03:00
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: background 0.1s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-item:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-item .shortcut {
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-divider {
|
|
|
|
|
height: 1px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-border, #e0e0e0);
|
|
|
|
|
margin: 6px 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
MODALS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.modal {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
z-index: 1000;
|
2026-01-11 09:56:44 -03:00
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 0.2s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-content {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
border-radius: var(--sentient-radius-lg, 12px);
|
|
|
|
|
width: 90%;
|
|
|
|
|
max-width: 480px;
|
|
|
|
|
max-height: 90vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-content.modal-large {
|
2026-01-11 09:56:44 -03:00
|
|
|
max-width: 600px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 16px 20px;
|
|
|
|
|
border-bottom: 1px solid var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-header h3 {
|
|
|
|
|
margin: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-close {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
2026-01-06 22:57:00 -03:00
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
|
|
|
|
color: var(--sentient-text-muted, #999);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: all 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-close:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-body {
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
padding: 16px 20px;
|
|
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Share Modal */
|
|
|
|
|
.share-input-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-input-group input,
|
|
|
|
|
.share-input-group select {
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.share-input-group input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-input-group input:focus,
|
|
|
|
|
.share-input-group select:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-section {
|
2026-01-11 09:56:44 -03:00
|
|
|
margin-top: 20px;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
border-top: 1px solid var(--sentient-border, #e0e0e0);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-section h4 {
|
|
|
|
|
margin: 0 0 12px 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-group input {
|
|
|
|
|
flex: 1;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 10px 12px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* Chart Modal */
|
|
|
|
|
.chart-type-selector {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
gap: 12px;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin-bottom: 20px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-type-btn {
|
2026-01-11 09:56:44 -03:00
|
|
|
flex: 1;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 16px;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: var(--sentient-bg-secondary, #f5f5f5);
|
|
|
|
|
border: 2px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-md, 8px);
|
|
|
|
|
color: var(--sentient-text-secondary, #666);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-type-btn:hover {
|
2026-01-11 09:56:44 -03:00
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
|
|
|
|
color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-type-btn.active {
|
2026-01-11 09:56:44 -03:00
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
|
|
|
|
background: rgba(66, 133, 244, 0.1);
|
|
|
|
|
color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-type-btn span {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chart-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chart-options label {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chart-options input {
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
border: 1px solid var(--sentient-border, #e0e0e0);
|
|
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background: var(--sentient-bg-primary, #ffffff);
|
|
|
|
|
color: var(--sentient-text-primary, #212121);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chart-options input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--sentient-accent, #4285f4);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
RESPONSIVE
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
.chat-panel {
|
2026-01-06 22:57:00 -03:00
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 320px;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel.collapsed {
|
|
|
|
|
transform: translateX(100%);
|
|
|
|
|
width: 320px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
@media (max-width: 768px) {
|
2026-01-06 22:57:00 -03:00
|
|
|
.toolbar-center {
|
2026-01-11 09:56:44 -03:00
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.sheet-name-input {
|
|
|
|
|
max-width: 150px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-primary span {
|
|
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel {
|
|
|
|
|
width: 100%;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
|
.sheet-toolbar {
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 6px 10px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.toolbar-right {
|
|
|
|
|
gap: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-primary {
|
|
|
|
|
padding: 8px 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
PRINT
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
@media print {
|
|
|
|
|
.sheet-toolbar,
|
|
|
|
|
.formula-bar,
|
|
|
|
|
.sheet-tabs-container,
|
|
|
|
|
.sheet-status-bar,
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel,
|
2026-01-06 22:57:00 -03:00
|
|
|
.context-menu,
|
|
|
|
|
.modal {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.sheet-app {
|
2026-01-06 22:57:00 -03:00
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sheet-main {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.sheet-content {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.sheet-grid-container {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell {
|
2026-01-11 09:56:44 -03:00
|
|
|
background: white !important;
|
|
|
|
|
color: black !important;
|
|
|
|
|
border-color: #ccc !important;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|