
#rsiChart, #stockChart {
    border: 2px solid black;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10; /* Ensure it stays on top */
}
.top-left img {
    max-width: 100%;
    height: auto;
    width: 150px; /* Adjust as needed */
    border-radius: 10px; /* Optional rounded corners */
}
/* Responsive adjustments */
@media (max-width: 576px) { /* Bootstrap 'xs' breakpoint */
    .top-left {
        position: relative;
        text-align: center; /* Center the image */
        margin-bottom: 10px; /* Add spacing */
    }
    .top-left img {
        width: 80px; /* Smaller size on mobile */
    }
}
