/* Trump Message Analysis Dashboard CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.card-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.card-content {
    padding: 25px 30px;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    text-align: center;
    margin-bottom: 0;
}

.summary-card .card-content {
    padding: 30px 20px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-signals .metric-value {
    color: #28a745;
}

.sell-signals .metric-value {
    color: #dc3545;
}

/* Filters */
.filters {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Messages */
.messages-container {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
}

.message-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.message-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.timestamp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85em;
    gap: 2px;
}

.post-time {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.9rem;
}

.collected-time {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
}

.timestamp-details {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.message-id {
    font-size: 0.8rem;
    color: #666;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}

.message-date {
    font-size: 0.9rem;
    color: #666;
}

.message-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.analysis-section {
    margin-top: 20px;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.signal-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-buy {
    background: #d4edda;
    color: #155724;
}

.signal-sell {
    background: #f8d7da;
    color: #721c24;
}

.signal-neutral {
    background: #fff3cd;
    color: #856404;
}

.confidence-bar {
    flex: 1;
    min-width: 150px;
}

.confidence-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.confidence-progress {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.reasoning {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 15px;
}

.affected-stocks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stock-chip {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-symbol {
    font-weight: 600;
    color: #333;
}

.stock-impact {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.impact-positive {
    background: #d4edda;
    color: #155724;
}

.impact-negative {
    background: #f8d7da;
    color: #721c24;
}

/* Stock Mentions */
.stocks-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.stock-mention-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stock-mention-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stock-mention-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.mention-count {
    background: #667eea;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.stock-mention-company {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stock-mention-signals {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
}

.signal-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.signal-count.buy {
    color: #28a745;
}

.signal-count.sell {
    color: #dc3545;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

/* Loading and Error States */
.loading-indicator {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.no-data {
    text-align: center;
    color: #666;
    padding: 40px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        min-width: auto;
    }
    
    .message-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .analysis-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .confidence-bar {
        width: 100%;
    }
    
    .stocks-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-item {
    animation: fadeIn 0.5s ease-out;
}

/* Scrollbar Styling */
.messages-container::-webkit-scrollbar {
    width: 8px;
}

.messages-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.messages-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.messages-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Performance Tracking Section */
.performance-section {
    margin-top: 30px;
}

.performance-summary {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.performance-summary .stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.performance-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Performance Table */
.performance-table {
    overflow-x: auto;
}

.performance-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.performance-table th,
.performance-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.performance-table th {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
}

.performance-table .symbol {
    font-weight: 600;
    color: #333;
}

.performance-table .company {
    color: #666;
    font-size: 0.85rem;
}

.performance-table .signal {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.performance-table .signal.BUY {
    background: #d4edda;
    color: #155724;
}

.performance-table .signal.SELL {
    background: #f8d7da;
    color: #721c24;
}

.performance-table .signal.NEUTRAL {
    background: #e2e3e5;
    color: #383d41;
}

.performance-table .price-change.positive {
    color: #28a745;
    font-weight: 600;
}

.performance-table .price-change.negative {
    color: #dc3545;
    font-weight: 600;
}

.performance-table .accuracy.CORRECT {
    color: #28a745;
    font-weight: 600;
}

.performance-table .accuracy.INCORRECT {
    color: #dc3545;
    font-weight: 600;
}

.performance-table .accuracy.PARTIAL {
    color: #ffc107;
    font-weight: 600;
}

.performance-table .accuracy.PENDING {
    color: #6c757d;
    font-style: italic;
}

/* Accuracy Charts */
.accuracy-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.chart-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.accuracy-metric {
    text-align: center;
    margin-bottom: 20px;
}

.accuracy-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.accuracy-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Insights Panel */
.insights-list {
    space-y: 15px;
}

.insight-item {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
}

.insight-item.positive {
    border-left-color: #28a745;
    background: #d4edda;
}

.insight-item.negative {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.insight-item.warning {
    border-left-color: #ffc107;
    background: #fff3cd;
}

.insight-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* No Data States */
.no-tracking-data {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-tracking-data .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-tracking-data h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.no-tracking-data p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== EDGAR INSIDER TRADING STYLES ==================== */

/* Edgar Section */
.edgar-section {
    margin-bottom: 30px;
}

.edgar-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Edgar Summary Stats */
.edgar-summary {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.edgar-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

/* Edgar Tabs */
.edgar-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0;
}

.edgar-tabs .tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.edgar-tabs .tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.edgar-tabs .tab-btn:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Decisions Filters */
.decisions-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 200px;
}

.filter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Decisions Table */
.decisions-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.decisions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.decisions-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.decisions-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.decisions-table tr:hover {
    background-color: #f8f9fa;
}

.decision-signal {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.decision-signal.buy {
    background: #d4edda;
    color: #155724;
}

.decision-signal.sell {
    background: #f8d7da;
    color: #721c24;
}

.decision-signal.neutral {
    background: #e2e3e5;
    color: #383d41;
}

.agreement-indicator {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.agreement-indicator.agree {
    background: #d4edda;
    color: #155724;
}

.agreement-indicator.disagree {
    background: #f8d7da;
    color: #721c24;
}

.agreement-indicator.pending {
    background: #fff3cd;
    color: #856404;
}

.performance-change {
    font-weight: 600;
}

.performance-change.positive {
    color: #28a745;
}

.performance-change.negative {
    color: #dc3545;
}

.performance-change.neutral {
    color: #6c757d;
}

/* Performance Comparison */
.performance-comparison {
    padding: 20px 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-card h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.insider-card {
    border-left: 4px solid #28a745;
}

.ai-card {
    border-left: 4px solid #007bff;
}

.gap-card {
    border-left: 4px solid #ffc107;
}

.accuracy-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.metric:last-child {
    border-bottom: none;
}

.metric .metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.metric .metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

/* Agreement Analysis */
.agreement-analysis {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.agreement-analysis h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.agreement-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Tracking Controls */
.tracking-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 15px;
}

.tracking-info {
    font-size: 0.9rem;
    color: #666;
}

/* Tracking Table */
.tracking-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.tracking-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tracking-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 0.9rem;
}

.tracking-table tr:hover {
    background-color: #f8f9fa;
}

.tracking-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tracking-status.active {
    background: #d4edda;
    color: #155724;
}

.tracking-status.completed {
    background: #cce5f0;
    color: #0c5460;
}

.tracking-status.error {
    background: #f8d7da;
    color: #721c24;
}

/* Action Buttons */
.action-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn.view {
    background: #e3f2fd;
    color: #1976d2;
}

.action-btn.view:hover {
    background: #bbdefb;
}

.action-btn.track {
    background: #f3e5f5;
    color: #7b1fa2;
}

.action-btn.track:hover {
    background: #e1bee7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .edgar-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .edgar-controls .btn {
        width: 100%;
        justify-content: center;
    }
    
    .decisions-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-input {
        min-width: 100%;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .tracking-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .decisions-table,
    .tracking-table {
        font-size: 0.8rem;
    }
    
    .decisions-table th,
    .tracking-table th {
        padding: 10px 8px;
    }
    
    .decisions-table td,
    .tracking-table td {
        padding: 10px 8px;
    }
}

/* Loading States */
.edgar-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.edgar-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    margin: 20px 0;
}

.edgar-success {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin: 20px 0;
}