
  .header {
    display: flex;
    justify-content: flex-end;
  }
 
  .user-recipes {
    margin-top: 20px;
  }
  .recipe-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  .recipe-table th,
  .recipe-table td {
    border: 1px solid #ddd;
    padding: 8px;
  }
  .recipe-table th {
    background-color: #f2f2f2;
  }
  .recipe-table td a {
    color: #006400;
    text-decoration: none;
  }
  .recipe-table td a:hover {
    text-decoration: underline;
  }
  
  .icon {
      width: 20px;
      height: 20px;
    }
    
