header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px;
}
 .ticker-link {
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1em;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 2px 4px;
      border-radius: 4px;
    }

    /* Underline effect */
    .ticker-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #f39c12, #e67e22);
      transition: width 0.3s ease;
    }

    .ticker-link:hover::after {
      width: 100%;
    }

    /* Hover effects */
    .ticker-link:hover {
      color: #f39c12;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-1px);
      text-shadow: 0 1px 3px rgba(243, 156, 18, 0.3);
    }

    /* Active state */
    .ticker-link:active {
      transform: translateY(0);
      color: #e67e22;
    }

    /* Optional: Add a small icon to indicate it's clickable */
    .ticker-link::before {
      content: '📊';
      margin-right: 4px;
      font-size: 0.9em;
      opacity: 0.7;
    }
    .light-theme .ticker-link {
    color: #d35400;
}

.light-theme .ticker-link:hover {
    color: #e67e22; /* Keep orange on hover */
    background: rgba(243, 156, 18, 0.1); /* Orange tinted background */
}

.light-theme .ticker-link:active {
    color: #d35400; /* Darker orange on click */
}
.autocomplete {
      position: relative;
      display: inline-block;
    }
 /* Container for the label and dropdown */
        .dropdown-container {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
            padding: 15px;
            color: white;
        }
#heatmap-options {
    padding: 15px;
    color: white;
    justify-content: center; /* Horizontally centers the content */
    align-items: center; /* Vertically centers the content */
    text-align: center; /* Optional: centers text inside */
}
#heatmap-options .content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background only around the content */
    padding: 15px;
    display: inline-block; /* Shrinks to fit the content inside */
}
#heatmap-options .content label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
}
#heatmap-options #time-options {
    appearance: none;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 36px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    position: relative;
    
    /* Custom blue dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%230088cc' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}
#heatmap-options #time-options:hover {
    border-color: #0088cc;
    background-color: #0f0f0f;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.2);
}
#heatmap-options #time-options:focus {
    outline: none;
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.25);
    background-color: #0a0a0a;
}
#heatmap-options #time-options:active {
    background-color: #050505;
}
#heatmap-options #time-options option {
    padding: 8px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-weight: 500;
}
#heatmap-options #time-options option:checked {
    background: #0088cc;
    color: #ffffff;
}
  .date-search-container {
    display: flex;
    align-items: center;
  }
      .explanation {
      font-size: 18px;
      text-align: center;
      color: #ecf0f1;
      background-color: rgba(46, 49, 49, 0.8);
      padding: 20px;
      margin: 20px;
      border-radius: 8px;
      border: 2px ridge GOLD;
    }

    input[type="text"] {
      width: 100%;
      padding: 8px;
      margin: 5px 0;
      box-sizing: border-box;
      font-size: 12px;
    }
    input[type="tex"] {
    width: 50%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
            font-size: 12px;
  }
  .video-container {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1; /* Ensure the video stays behind the content */
  }
  #myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; /* This forces stretching */
}
@media (orientation: portrait) {
  .video-container {
    display: none;
  }
}

  .no{
      border: none;
      display: block;
      margin: 10px auto;
      width: 500px;
      height: 500px;
    }
  .highlighted-span {
    margin-right: 10px;
    cursor: default;
    display: flex;
    align-items: center;
    color: white; /* Set text color to white */
}

.highlighted-span i {
    margin-left: 5px; /* Adjust margin between text and icon */
    color: #FFD700; /* Set icon color */
}

.autocomplete-items {
  position: absolute;
background-color: rgba(255, 255, 255, 0.5);
  z-index: 99;
  color: #000000; /* Set text color to black */
  max-height: 300px; /* Set maximum height for the autocomplete list */
  overflow-y: auto; /* Enable vertical scrolling */
  width: 100%;
}


    .autocomplete-item {
      padding: 10px;
      cursor: pointer;
    }

.autocomplete-item:hover {
  background-color: #e0e0e0; /* Slightly darker light gray background color on hover */
}
.top-nav {
      display: flex;
    align-items: center; /* Align items vertically */
    padding: 10px 10px; /* Adjusted padding */
    background-color: black;
}

  .loading-indicator {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.8);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #333333;
    }

.search-container {
  margin-left: auto; /* Push to the right */
}
    #portfolioSearchBox::placeholder {
  color: white;
}

#portfolioSearchBox {
  background: linear-gradient(to right, #3498db, #2980b9);
  color: white;
  font-size: 16px;
  padding: 10px;
  border: 2px solid black;
  box-sizing: border-box;
}
  a.top-links {
    color: white;
    padding: 10px 20px; /* Adjusted padding */
    text-align: center;
    text-decoration: none;
  }


  a.top-links:hover {
    background-color: White;
    color: FireBrick;
    cursor: pointer;
  }
dl {
    display: flex;
    align-items: center; /* Align items vertically */
    padding: 10px 10px; /* Adjusted padding */
    background-color: black;
}
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
      background: linear-gradient(to right, #27ae60, #2ecc71);
    }

  .img {
      border: 10px ridge #3498db;
      display: block;
      margin: 10px auto;
      width: 500px;
      height: 500px;
    }

    .top-link {
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
    }

    .top-link:hover {
      background-color: White;
      color: FireBrick;
      cursor: pointer;
    }

    .content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 20px;
    }

    h1 {
      color: #ecf0f1;
      text-align: center;
      font: 60px 'Roboto', sans-serif;
      border-radius: 10px;
      margin: 0;
      padding: 20px;
    }

    p1 {
      color: white;
      font: italic bold 35px "Times New Roman", Times, serif;
      margin: 20px;
    }
footer {
  background-color: #34495e;
  padding: 20px;
  color: white;
  margin-top: auto; /* Push the footer to the bottom of the content */
}
    .footer-links {
      display: flex;
      justify-content: space-between;
      background-color: #34495e;
      padding: 20px;
      color: white;
      margin-top: auto;
    }

    .footer-links nav ul {
      list-style: lower-roman inside;
      padding: 0;
      margin: 0;
    }

    .footer-links a {
      color: #ecf0f1;
      text-decoration: none;
    }

    .footer-links h3 {
      color: #ecf0f1;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      color: white
    }

    th, td {
      border: 1px solid white;
      padding: 10px;
      text-align: left;
    }

    th {
      background-color: #2c3e50;
      color: white;
    }
    #searchButton {
      display: block;
      margin: 0 auto;}



  input[type="date"] {
    padding: 8px; /* Adjust padding for a cleaner look */
    border: 1px solid #3498db;  /* Add a border with a shade of blue */
    border-radius: 5px; /* Add border-radius for rounded corners */
  }
#earningsDate::-webkit-calendar-picker-indicator {
  color: GOLD;
}

#earningsDate::placeholder {
  color: #DAA520; /* Style the placeholder text */
}
#earningsDate::-webkit-datetime-edit-fields-wrapper,
#earningsDate::-webkit-datetime-edit-text,
#earningsDate::-webkit-datetime-edit-month-field,
#earningsDate::-webkit-datetime-edit-day-field,
#earningsDate::-webkit-datetime-edit-year-field {
  color: #DC143C;
}


#earningsDate[type="date"]::-moz-date-invalid {
  color: red; /* Style invalid dates in Firefox */
}