.tv-bell-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1e1e2f;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    z-index: 9999;
}
.tv-bell-counter {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
}
.tv-alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.tv-alert-card {
    background: #1e1e2f;
    color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.tv-alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.tv-badge-buy { background: #4caf50; color: #fff; padding: 2px 8px; border-radius: 12px; font-size: 12px; margin-left: 6px; }
.tv-badge-sell { background: #f44336; color: #fff; padding: 2px 8px; border-radius: 12px; font-size: 12px; margin-left: 6px; }
.tv-time { font-size: 11px; color: #bbb; margin-top: 8px; }
#tv-load-more {
    background: #2196f3;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    display: none;
}
