body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    margin-left: 5px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.result-container {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
}

.stock-logo {
    max-width: 50px;
    margin: 10px;
}

.tradingview-widget-container {
    width: 980px;
    height: 610px;
    margin-top: 20px;
}

.news-container {
    margin-top: 20px;
    width: 980px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
}

.news-item {
    margin-bottom: 15px;
}

.news-item a {
    color: #00aaff;
    font-size: 1.1em;
    text-decoration: none;
}

.news-item a:hover {
    text-decoration: underline;
}

.news-item p {
    font-size: 0.9em;
    color: #cccccc;
}

.recommendation-container {
    margin-top: 20px;
    font-size: 1.2em;
}

.recommendation-container p {
    font-weight: bold;
}
h2 {
    font-size: 12px;
}
nav {
    display: flex;
    background-color: gray;
    padding: 5px;
    border-radius: 20px;
  }

  /* Style the links in the navbar */
  nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 10px;
  }

  /* Change link color on hover */
  nav a:hover {
    background-color: #555;
  }