body {
    background-color: rgb(240,240,240);
    font-family: Roboto, Helvetica, sans-serif;
    margin: 0px;
  }

  a {
    cursor: pointer;
    text-decoration: none;
  }

  table {
    position: relative;
    width:90%;
    top:20px;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 4px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 40px;
    border-radius: 4px;
    border:0px;
    padding:0px;
    border-spacing: 0px;
    background-color: white;
    border-collapse:collapse;
  }

  table th {
    height:30px;
    text-align: left;
    font-size:14px;
    font-weight: normal;
    padding-left: 5px;
    border-bottom: 1px solid rgb(220,220,220); 
  }

  table td {
    padding-left:5px;
    color:rgb(128,128,128);
  }

  table tr {
    height:50px;
    font-size: 18px;
    cursor:pointer;
  }

  .appBar {
    width:100%;
    height:40px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255); 
    color: rgb(0, 0, 0); 
    box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 4px;
    text-align: center;
    line-height: 40px;
  }

  .card {
    margin-top: 40px;
    width:200px;
    height:50px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 4px;
    text-align: center;
    line-height: 50px;
  }

  .card.customer{
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    background-color: white;
  }

  .line {
    width:10px;
    height:1.5px;
    background-color: rgb(200,200,200);
  }

  .name {
    position:relative;
    top:-5px;
    margin-left:5px;
    color:rgb(0,0,0);
  }

  .icon {
    color:rgb(128,128,128);
  }

  .hightlight {
      background-color: rgb(240,240,240);
  }

  .loader {
    position: fixed;
    left: calc(50% - 100px);
    top: 30%;
    border: 16px solid #ffffff; /* Light grey */
    border-top: 16px solid #3498db;;
    border-bottom: 16px solid #3498db;;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }