body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}

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

.header {
    background: #1e293b;
    color: white;
    padding: 15px 20px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

.header p {
    margin: 5px 0 0;
    font-size: 14px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
}
.market-card {
    display: inline-block;
    width: 220px;
    margin: 15px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.market-card h3 {
    margin-bottom: 10px;
}

.market-card p {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}
.positive {
    color: green;
    font-weight: bold;
}

.negative {
    color: red;
    font-weight: bold;
}
.trap-zone {
    color: #b88600;
    font-weight: bold;
}
.resistance {
    color: red;
    font-weight: bold;
}
.support {
    color: green;
    font-weight: bold;
}
.median {
    font-weight: bold;
}
.major-resistance {
    font-weight: bold;
    color: #8b0000;
}
.major-resistance {
    color: #8b0000;
    font-weight: bold;
}
.major-support {
    color: #006400;
    font-weight: bold;
}
.short-range {
    font-weight: bold;
}
.market-open {
    color: green;
    font-weight: bold;
}

.market-closed {
    color: red;
    font-weight: bold;
}
.back-button {
    display: inline-block;
    padding: 10px 16px;
    background: #172554;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.back-button:hover {
    opacity: 0.85;
}
.levels-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
}
.nifty-price {
    font-size: 32px;
    font-weight: bold;
}
.nifty-price {
    color: #000000;
    font-size: 32px;
    font-weight: bold;
}
.market-bullish {
    color: green;
    font-weight: bold;
}

.market-bearish {
    color: red;
    font-weight: bold;
}

.market-neutral {
    color: orange;
    font-weight: bold;
}
/* Trading Signal Colors */

.signal-buy {
    color: green;
    font-weight: bold;
}

.signal-sell {
    color: red;
    font-weight: bold;
}

.signal-neutral {
    color: orange;
    font-weight: bold;
}