/* ===== GlassCard ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    transition: all 0.2s ease;
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card-icon {
    color: #10B981;
    font-size: 1.25rem;
}

.glass-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #F8FAFC;
}

.glass-card-subtitle {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.125rem;
}

.glass-card-title-actions {
    margin-left: auto;
}

.glass-card-body {
    padding: 1.25rem;
}

/* ===== MetricCard ===== */
.metric-card {
    padding: 0 !important;
}

.metric-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
}

.metric-card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.metric-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-card-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: -0.02em;
    line-height: 1;
}

.metric-card-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
}

.trend-up {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.trend-down {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

/* ===== StatusChip ===== */
.status-chip {
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.02em !important;
}

/* ===== EmptyState ===== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
}

.empty-state-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #F8FAFC;
}

.empty-state-description {
    font-size: 0.875rem;
    color: #64748B;
    max-width: 320px;
    margin: 0;
}

.empty-state-action {
    margin-top: 0.5rem;
}

/* ===== SearchToolbar ===== */
.search-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-toolbar-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-toolbar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #F8FAFC;
    letter-spacing: -0.02em;
    margin: 0;
}

.search-toolbar-subtitle {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0;
}

.search-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-toolbar-input {
    min-width: 240px;
}

.search-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Timeline ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item-last {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.timeline-item-last::before {
    display: none;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.25rem;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #F8FAFC;
}

.timeline-time {
    font-size: 0.75rem;
    color: #64748B;
    white-space: nowrap;
}

.timeline-description {
    font-size: 0.8125rem;
    color: #94A3B8;
    margin: 0;
    line-height: 1.5;
}

.timeline-extra {
    margin-top: 0.75rem;
}

/* ===== UploadDialog ===== */
.upload-dialog {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.upload-dialog-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-dialog-header h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #F8FAFC;
    margin: 0;
}

.upload-dialog-icon {
    color: #10B981;
    font-size: 1.5rem;
}

.upload-dialog-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.upload-dialog-dropzone:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
}

.upload-dialog-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #94A3B8;
}

.upload-dialog-label-text {
    font-size: 0.875rem;
}

.upload-dialog-label-text strong {
    color: #10B981;
}

.upload-dialog-accept {
    font-size: 0.75rem;
    color: #64748B;
}

.upload-dialog-file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.upload-dialog-file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.upload-dialog-file-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #F8FAFC;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-dialog-file-size {
    font-size: 0.75rem;
    color: #64748B;
}

.upload-dialog-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-dialog-progress-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #10B981;
    min-width: 40px;
    text-align: right;
}
