/* Additional styles for the stock data table */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

.table td {
    padding: 10px;
    text-align: right;
}

/* Symbol and date columns are left-aligned */
.table td:nth-child(1),
.table td:nth-child(2) {
    text-align: left;
}

/* Make negative values red and positive values green */
.negative {
    color: #e74c3c;
}

.positive {
    color: #2ecc71;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .table th, 
    .table td {
        padding: 8px 5px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .table th, 
    .table td {
        padding: 6px 3px;
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
} 