.tableitem{
    color: #407EC9;
    padding: 10px;
    font-weight: bolder;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #002554;
    transition:all 0.5s;
  transform:scale(1) translate(0px, 0px);
  }

  .tableitem:hover{
    transition:all 1s;
    transform:scale(1.05) translate(20px, 0px);
  }

  .tableitem img{
    width: 30px;
    margin: 10px;
    vertical-align: middle;
    border-style: none;
  }
  
  .tabledescription{
      background:#efefef;
      font-weight: normal;
      padding:10px;
      margin:10px;
      border-left:2px solid #002554;
      color:  #002554;
  }




  /* Reproductor de Audio */

  .audio-player {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
  }
  
  .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .play {
    background-image: url(https://www.kindpng.com/picc/m/113-1139511_transparent-event-icon-png-online-portal-icon-png.png);
    width: 30px;
    height: 30px;
  }
  
  .pause {
    background-image: url(https://www.kindpng.com/picc/m/113-1139511_transparent-event-icon-png-online-portal-icon-png.png);
    width: 30px;
    height: 30px;
  }
  
  #trackinfo {
    font-size: 14px;
    color: #555;
  }
  

  .extracontentcards{
    display: inline-block; 
    min-width:200px; 
    margin:20px; 
    border: thin solid #efefef; 
    width:20%; 
    text-align:center; 
    border-radius:10px;
    box-shadow: 0px 0px 5px gray;

    transition: all 0.5s;
    transform:scale(1);
  }

  .extracontentcards:hover{
    
    border: thin solid #407EC9; 
    
    cursor:pointer;

    transition: all 1s;
    transform:scale(1.05);
  }