/* General Page Styling */
body {
    background-color: #000000; /* Green background */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Heading Styling */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: cyan;
    text-shadow: 0px 0px 15px cyan, 0px 0px 30px #00ffff;
    margin-bottom: 10px;
}

/* Buy Signals Container */
#buySignals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Individual Signal Card */
.signal-card {
    background: linear-gradient(135deg, #8b0000, #ff0000); /* Dark green to black gradient */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px #ff0000, 0px 0px 25px #ff3333; /* Green neon glow */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.signal-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 25px #ff0000, 0px 0px 40px  #ff3333;
}

/* Text Formatting */
.signal-card strong {
    color: white;
    font-size: 18px;
    text-shadow: 0px 0px 10px yellow;
}

.signal-card b {
    color: cyan;
    text-shadow: 0px 0px 10px cyan;
}

/* Highlight Entry, Exit, Stop Loss */
.signal-card .entry-price {
    color: #00ff00;
    text-shadow: 0px 0px 10px #00ff00;
}

.signal-card .exit-price {
    color: #ff0000;
    text-shadow: 0px 0px 10px #ff0000;
}

.signal-card .stop-loss {
    color: #ff9900;
    text-shadow: 0px 0px 10px #ff9900;
}

/* Volume and 24H Change */
.signal-card .volume {
    color: #ff66ff;
    text-shadow: 0px 0px 10px #ff66ff;
}

.signal-card .change {
    color: #00ccff;
    text-shadow: 0px 0px 10px #00ccff;
}

/* Loading Indicator */
#loading {
    font-size: 18px;
    color: yellow;
    text-shadow: 0px 0px 10px yellow;
    margin-top: 20px;
}

.copy-tooltip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 0, 0.9);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

 .home-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: cyan;
            color: black;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 18px;
        }
        .home-button:hover {
            background-color: lightblue;
        }
        
         /* Notifications Box */
        .notifications {
            text-align: left;
            color: red;
            font-size: 13px;
            font-weight: bold;
            text-shadow: 0 0 5px red;
            margin-top: 5px;
            margin-left: 20px; /* Adjust for left alignment */
        }
        .notification-item {
            margin-bottom: 5px;
        }
        /* Container for left alignment */
        .content-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-left: 10%;
        }
        
   /* sale signal cards */     
   
        
#marketOverview {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background: #1e1e1e; /* Dark background */
    color: #fff; /* White text */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
}

.market-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.market-box p {
    font-size: 14px;
    margin: 8px 0;
}

.market-box hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

#topCoins p {
    font-weight: bold;
    font-size: 14px;
}

#marketOverview .bullish {
    color: #00ff00; /* Green for bullish market */
}

#marketOverview .bearish {
    color: #ff0000; /* Red for bearish market */
}

#marketOverview .neutral {
    color: #ffa500; /* Orange for neutral market */
}

@media (max-width: 768px) {
    .market-box {
        font-size: 14px;
        padding: 10px;
    }
}
#marketOverview {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
/* Sell Signals Container */
#sellSignals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Individual Signal Card - Sell */
.sell-signal-card {
    background: linear-gradient(135deg, #8b0000, #ff0000); /* Deep Red Gradient */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px #ff0000, 0px 0px 25px #ff3333; /* Red Neon Glow */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.sell-signal-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 25px #ff0000, 0px 0px 40px #ff3333;
}

/* Text Formatting */
.sell-signal-card strong {
    color: white;
    font-size: 18px;
    text-shadow: 0px 0px 10px yellow;
}

.sell-signal-card b {
    color: cyan;
    text-shadow: 0px 0px 10px cyan;
}

/* Highlight Entry, Exit, Stop Loss */
.sell-signal-card .entry-price {
    color: #00ff00; /* Green for entry price */
    text-shadow: 0px 0px 10px #00ff00;
}

.sell-signal-card .exit-price {
    color: #ff0000; /* Red for exit price */
    text-shadow: 0px 0px 10px #ff0000;
}

.sell-signal-card .stop-loss {
    color: #ff9900; /* Orange for stop loss */
    text-shadow: 0px 0px 10px #ff9900;
}

/* Volume and 24H Change */
.sell-signal-card .volume {
    color: #ff66ff;
    text-shadow: 0px 0px 10px #ff66ff;
}

.sell-signal-card .change {
    color: #00ccff;
    text-shadow: 0px 0px 10px #00ccff;
}
