 /* Header Styling */
 .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0350b6;
    color: white;
    padding: 15px 20px;
  }
  
  /* Username Styling */
  .username {
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Logout Button Styling */
  .logout {
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  .logout:hover {
    color: #e6f1fd;
  }

  /* Stocks Container */

  .stocks-box {
    background-color: #f4f4f4;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .stocks-list {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e6f1fd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
  }

  .stocks-container {
    text-align: center;
    margin-top: 50px;
  }

  .stocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 40px;
  }

  /* stock table container */
  .stock-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    margin-top: 1rem;
    border: 1px solid #ccc;
  }
  
  .stock-table thead {
    background-color: #f9f9f9;
  }
  
  .stock-table th,
  .stock-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
  }
  
  .stock-table tr:hover {
    background-color: #f1f1f1;
  }
  
  /* stock form container */
  .stock-form-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .stock-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .stock-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  .stock-input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  
  .stock-button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .stock-button:hover {
    background-color: #0056b3;
  }
  