/* Live Feed Styles */
.liveFeed {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; /* Default width */
    height: 100%;
    padding: 20px;
    background-color: white;
    border-left: 0px solid #f8f9fb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Default box shadow */
    color: #333333;
    overflow-y: auto;
    z-index: 1000;
    transition: background-color 0.5s ease, border 0.5s ease;
}

body.dark-mode .liveFeed {
    background-color: #181c24; /* Default dark mode background */
    border-left: 1px solid #666; /* Default dark mode border */
}

/* Alternative Live Feed Styles */
.liveFeed.alternative {
    width: auto; /* Alternative width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35); /* Sharper box shadow */
}

