/* SeaStyles.css */
body {
    font-family: Helvetica;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  h1 {
    color: #333;
    margin-top: 20px;
  }
  
  .aspect-ratio-container {
    position: relative;
    width: 80%; /* Adjust the width as needed */
    margin: 20px auto; /* Center the container horizontally */
}

.aspect-ratio-container::before {
    content: "";
    display: block;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

#chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

svg {
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    border: 1px solid #ccc;
}

  
  #reset-btn {
    background-color: #007BFF; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 14px; 
    transition: background-color 0.3s ease;
  }
  
  #reset-btn:hover {
    background-color: #0056b3; 
  }

  button {
    background-color: #007BFF; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 14px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

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