You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

79 lines
1.1 KiB

:host {
display: block;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 1.5rem;
}
.detail-row {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.5rem;
.label {
font-weight: 500;
min-width: 120px;
color: rgba(0, 0, 0, 0.6);
}
}
// Filing status chips
.chip-draft {
--mdc-chip-elevated-container-color: #e0e0e0;
}
.chip-estimated {
--mdc-chip-elevated-container-color: #fff3e0;
}
.chip-final {
--mdc-chip-elevated-container-color: #e8f5e9;
}
// Aggregation cards
.aggregation-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
.aggregation-card {
.aggregation-value {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.breakdown {
border-top: 1px solid rgba(0, 0, 0, 0.08);
padding-top: 0.5rem;
font-size: 0.875rem;
}
.breakdown-row {
display: flex;
justify-content: space-between;
padding: 2px 0;
}
.box-label {
color: rgba(0, 0, 0, 0.6);
font-family: monospace;
}
.box-value {
font-weight: 500;
}
}
// Box table
.box-table {
max-width: 500px;
}