/* General body styling */
body {
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism effect for panels */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Styling for the ticker input to make it uppercase */
#ticker {
    text-transform: uppercase;
}
