body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #323232;
    color: #333;
    margin: 0;
  }
  
  .header {
    background-color: #4285f4; /* Google Blue */
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .main {
    max-width: 1200px;
    margin: 20px auto;
  }
  
  .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .inquiry-box {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-bottom: 20px;
  }
  
  label {
    margin-bottom: 10px;
  }
  
  input {
    padding: 10px;
    margin-bottom: 10px;
  }
  
  button {
    background-color: #4285f4; /* Google Blue */
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0f74c8; /* Darker shade on hover */
  }
  
  .word-display {
    border: 2px solid #4285f4; /* Google Blue */
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    width: 70%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .current-word-label {
    color: #4285f4; /* Google Blue */
  }
  
  .current-word {
    font-size: 24px;
  }
  
  .synonyms-and-definitions {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  
  .synonyms {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
    margin-right: 20px; /* Margin between synonyms and definitions */
  }
  
  .definitions {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }  
  

  .word-frequency-graph {
    margin-top: 20px;
  }
  

  
  .word-frequency-bar {
    height: 100%; /* Set the height to 100% to make the bar visible */
    background-color: #4285f4; /* Google Blue */
    border-radius: 4px;
    margin-top: 10px;
    width: 0; /* Initial width is 0% */
    transition: width 0.5s ease; /* Add animation for smooth width change */
  }
  
  
  .clickable-box {
    cursor: pointer;
    padding: 10px;
    background-color: #4e0950; /* Google Blue */
    color: #fff;
    border-radius: 4px;
    margin-top: 10px;
  }
  
  .clickable-box:hover {
    background-color: #4e0950; /* Darker shade on hover */
  }
  img {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}
.word-frequency-graph {
  margin-top: 20px;
}

.word-frequency-bar {
  height: 100%;
  background-color: #4285f4;
  border-radius: 4px;
  margin-top: 10px;
  width: 0;
  transition: width 0.5s ease;
}