body {
    background-color: black;
    color:white;
}
/* * {
    background-color: black;
    color:white;
} */
button {
    width:100px;
    height:30px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: black;
    color:white;
}
#news-sentiment {
    width: 100%;
    height: 120px;
}
#news-div {
    padding:20px;
}
button:hover {

    background-color: white;
    color:black;
}
a {
    color:white;
}
svg {
    width:85%;
    height:400px;
}
#stock-graph-div {
    display:flex;
    justify-content:left;
    
}
#stock-ticker {
    font-size: 40px;
}
#other-stock-ticker {
    font-size: 40px;
}
.selected-info {
    background-image: linear-gradient(to right, red, green);
}
.selected-timeframe {
    background-color: gray;
}
#stock-graph-info {
    display: grid;
    width: 80%;
    height: 100px;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 2fr 2fr 2fr;
}
.stock-display {
    font-size: 30px;
    text-align: center;
}
#other-stock-graph-info {
    display: grid;
    width: 80%;
    height: 100px;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 2fr 2fr 2fr;
}
.other-stock-display {
    font-size: 30px;
    text-align: center;
}
.article-image {
    width:60px;
    height:60px;
}
.article-div {
    display:flex;
    align-items:center;
    width:90%;
    gap:15px;
}
img {
    object-fit: contain;
}

#inputTicker {
    width: 200px;
    height: 30px;
    border-radius: 10px;
    border-width:2px;
    border-color:white;
    background-color: black;
    color:white;
}
#otherInputTicker {
    width: 200px;
    height: 30px;
    border-radius: 10px;
    border-width:2px;
    border-color:white;
}
#timeline {
    margin-left:200px;
}
#user-input-form {
    display:flex;
    gap:20px;
    align-items:center;
}

.label label[data-title]:hover::after {
    content: attr(data-title);
    position: absolute;
    background-color: #e0e0e0;
    color: black;
    padding: 2px 5px;
    margin-top: 20px; 
    margin-left: -70px;
    font-size: 16px;
    border-radius: 3px;
    border-color: black;
}

#timeframe-selector{
    background-color: black;
    color:white;
}


