@tailwind base;
@tailwind components;
@tailwind utilities;

.nameapikey{
    font-weight: bold;
    text-transform: uppercase;
}
.apikey{
    margin-left: 10px;
}

.resp {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }
  
  .resp caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  .resp tr {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: .35em;
  }
  
  .resp th,
  .resp td {
    padding: .625em;
    text-align: center;
  }
  
  .resp th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  
  @media screen and (max-width: 3600px) {
    .resp {
      border: 0;
    }
  
    .resp caption {
      font-size: 1.3em;
    }
    
    .resp thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .resp tr {
     
      display: block;
      margin-bottom: .625em;
    }
    
    .resp td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    .resp td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .resp td:last-child {
      border-bottom: 0;
    }
  }
  

