/*Css for login start*/
* {
    box-sizing: border-box;
    }
    
    *:focus {
        outline: none;
    }
    .login {
    margin: 20px auto;
    width: 400px;
    }
    .login-screen {
    background-color: #080707ec;
    padding: 20px;
    border-radius: 5px
    }
    
    .app-title {
    text-align: center;
    color: #1fc7d6;
    }
    
    .login-form {
    text-align: center;
    }
    .control-group {
    margin-bottom: 10px;
    }
    
    input {
    text-align: center;
    background-color: #ECF0F1;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 250px;
    transition: border .5s;
    }
    
    input:focus {
    border: 2px solid #1fc7d6;
    box-shadow: none;
    }
    
    .btn {
      border: 2px solid transparent;
      background: #1fc7d6;
      color: #ffffff;
      font-size: 16px;
      line-height: 25px;
      padding: 10px 0;
      text-decoration: none;
      text-shadow: none;
      border-radius: 3px;
      box-shadow: none;
      transition: 0.25s;
      display: block;
      width: 250px;
      margin: 0 auto;
    }
    
    .btn:hover {
      background: -webkit-linear-gradient(right, #1fc7d6, #26b0e6, #1fc7d6, #26b0e6);
      transition: all 0.4s ease;;
    }
    
    .login-link {
      font-size: 12px;
      color: #1fc7d6;
      display: block;
        margin-top: 12px;
    }

    /*Css for login End*/

    /*Css for search feed*/
    .styled-table {
      border-collapse: collapse;
      margin: 25px 0;
      font-size: 0.9em;
      font-family: sans-serif;
      min-width: 400px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }

  .styled-table thead tr {
      background-color: #1fc7d6;
      color: #ffffff;
      text-align: left;
  }

  .styled-table td {
      padding: 12px 15px;
  }

  .styled-table h3{
    color: #1fc7d6;
  }

  .styled-table tbody tr {
      border-bottom: 1px solid #dddddd;
  }

  .styled-table tbody tr:nth-of-type(even) {
      background-color: #f3f3f3;
  }

  .styled-table tbody tr:last-of-type {
      border-bottom: 2px solid #1fc7d6;
  } 

  .styled-table tbody tr.active-row {
      font-weight: bold;
      color: #000;
  }
  /*Css for search feed end*/