#top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #top-bar .title {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  #top-bar .title .logo img {
    max-width: 250px;
  }
  
  #top-bar .actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  #top-bar .actions  i {
    color: #666;
  }
  
  #top-bar .actions a {
    cursor: pointer;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s;
    text-align: center;
  }
  
  #top-bar .actions a:hover {
    background-color: #f0f0f0;
  }