/*
The main styling for the .ticker-window now comes from the .led-text class 
in bot-style.css to ensure a perfect match with the Ghost Sniper app.
This file now only contains styles for the content *inside* the window.
*/

.ticker-window h2 {
    /* The h2 style is now inherited from .bot-ui h2, but we can override if needed */
    font-size: 1rem; /* Make it slightly smaller to fit the theme */
}

#ticker-feed {
    height: 60vh;
    overflow-y: auto;
    /* The background and main text color are inherited from .led-text */
    padding: 10px;
    border-top: 2px solid #0f380f; /* Separator from title */
}

.token-entry, .token-entry p, .token-entry strong, .token-entry small {
    color: #000000 !important; /* Force all text to black */
}

.token-entry {
    border-bottom: 1px dashed #000000; /* Black dash */
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.token-entry p {
    margin: 0;
    padding: 2px 0;
    word-wrap: break-word;
}

.copyable {
    cursor: pointer;
    text-decoration: underline;
    color: #0000FF !important; /* Force override to blue for visibility */
}

.copyable:hover {
    color: #000000;
    background-color: #c0c0c0; /* A light grey hover effect */
}
