*{
    margin: 0;
    padding: 0;
/*    font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Quicksand', sans-serif;
}
 
:root {
    --white: #FFFFFF;
    --black: #000000;
    --very-light-pink: #C7C7C7;
    --text-input-field: #F7F7F7;
    --hospital-green: #ACD9B2;
    --sm: 14px;
    --md: 16px;
    --lg: 18px;
  }

.derecha {
    text-align: right;
    font-weight: bold;
/*    background-color: #62f0ae; */
}

.form-container {
    display: grid;
    grid-template-rows: auto 1fr auto; 
    width: 300px;
 }
 
.btn-primary{
    background-color: #1e90ff;
    padding: 1%;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary:hover{
    background-color: #3742fa; 
}

.btn-especial{
    background-color: #8ae7c4; 
    padding: 0%;
    color: white;
    text-decoration: none;
    font-weight: normal;
}

.btn-especial:hover{
    background-color: #8ae7c4; 
}

  #username {
    background-color: var(--text-input-field);
    border: none;
    border-radius: 8px;
    height: 25px;
    font-size: var(--md);
    padding: 6px;
    margin-bottom: 12px;
  }

  #password {
    background-color: var(--text-input-field);
    border: none;
    border-radius: 8px;
    height: 25px;
    font-size: var(--md);
    padding: 6px;
    margin-bottom: 12px;
  } 

  .logo {
    width: 180px;
    margin-bottom: 48px;
    justify-self: center;
  }

 .form {
    display: flex;
    flex-direction: column;
    background-color: var(--hospital-green);
  }
  
  #marco {
    border: 1px solid #80A93E;
    width: 200px;
  }
  
  .form a {
    color: var(--hospital-green);
    font-size: var(--sm);
    text-align: center;
    text-decoration: none;
    margin-bottom: 52px;
  }

  .tbl-report{
    width: 100%;
    font-size: 10px; 
    text-align: center;
 /*    overflow-x:auto;
    font-size:1em;
    line-height:0.8em; */
}

.tbl-report th {
    text-align: center;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

.tbl-report tr {
    text-align: center;
    font-size: 15px;
    line-height: 12px;
  }

.tbl-report td {
    text-align: center;
    border-bottom: 1px solid #111;
    color: #333;
    font-size: 15px;
    line-height: 8px;
    padding: 5%; 
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }

.wrapper{
    padding: 1%; 
    width: 100%;
    margin: 0;
/*    font-size: 8px; */
}

.text-center{
    text-align: center;
}

.clearfix{
    float: none;
    clear: both;
}

.tbl-full{
    width: 100%;
    font-size: 10px; 
    overflow-x:auto;
/*    font-size:1em;
    line-height:0.8em; */
}

.tbl-30{
    width: 30%;
    /* La altura por defecto es 1.1em, podemos cambiarla 
    line-height: 1em; 
    line-height: 18px; 
    font-size: 10px; 
    font-size:1em;
    line-height:normal; */
}

table tr th{
    border-bottom: 1px solid black;
    padding: 1%;
    text-align: center;
}

table tr td{
    padding: 1%; 
}

.btn-secondary{
    background-color: #7bed9f;
    padding: 1%;
    color: black;
    text-decoration: none;
    font-weight: bold;
}
.btn-secondary:hover{
    background-color: #2ed573;
}

.btn-danger{
    background-color: #ff6b81;
    padding: 1%;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.btn-danger:hover{
    background-color: #ff4757;
}

.btn-aviso{
    background-color: #ff6b81;
    padding: 1%;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.btn-aviso:hover{
    background-color: #ff4757;
}

.success{
    color: #2ed573;
}
.error{
    color: #ff4757;
}


/* CSS for Menu */
.menu{
    border-bottom: 1px solid grey;
}
.menu ul{
    list-style-type: none;
}
.menu ul li{
    display: inline;
    padding: 1%;
}
.menu ul li a{
    text-decoration: none;
    font-weight: bold;
    color: #ff6b81;
}
.menu ul li a:hover{
    color: #ff4757;
}

/* CSS for main-content */
.main-content{
/*    background-color: #f1f2f6; */
    background-color: white;
    padding: 3% 0; 
    line-height: normal;
}

.col-4{
    width: 18%;
    background-color: white;
    margin: 1%;
    padding: 2%;
    float: left;
}


/* CSS for Footer */
.footer{
    background-color: #ff4757;
    color: white;
}

/* CSS for Login */
.login{
    border: 2px solid grey;
    width: 20%;
    margin: 10% auto;
    padding: 2%;
    background-color: #FFFFFF;
/*    place-items: center; */
}

.copias{
    border: 2px solid grey;
    width: 10%;
    margin: 10% auto;
    padding: 2%;
    background-color: #f1d5d5;
}

.informes{
    border: 2px solid grey;
    width: 20%;
    margin: 10% auto;
    padding: 2%;
}
/*
.login {
    width: 100%;
    height: 50vh;
    display: grid;
    place-items: center;
 }
 */
