/* Custom styles for StockSense India */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.stock-card {
    transition: all 0.3s ease;
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.positive-change {
    color: #10B981;
}

.negative-change {
    color: #EF4444;
}

.news-card {
    transition: all 0.3s ease;
    min-height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.indicator-card {
    transition: all 0.3s ease;
}

.indicator-card:hover {
    transform: scale(1.02);
}