/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    background-color: #18191a;
}

::selection{
    color: #fff;
}

[v-cloak] {
  display: none;
}

input[type=text]:disabled {
  opacity: 0.3;
}

button:disabled {
  opacity: 0.3;
}

/* ========================= */

.navbarSection{
    background: #FED302;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbarSection img{
    width: 150px;
}

.navbarSection button{
    margin-left: 10px;
    width: 100px;
    background: #18191a;
    color: white;
    border: 1px solid #252526;
    border-radius: 2px;
}

.navbarSection button:hover{
    opacity: 0.7;
}

/* ========================= */

.header button{
    width: 50%;
    background: #0078c0;
    border: none;
    margin-left: 10px;
    margin-bottom: 10px;
    height: 32px;
    border-radius: 5px;
    color: white;
}

.header button:hover{
    opacity: 0.7;
}

.inputsRow {
    margin: 50px 10px;
}

.inputsRow h1{
    font-size: 24px;
    color: white;
}

.inputsRow .updateButton{
    width: auto;
    background: #0078c0;
    border: none;
    /* margin-left: 10px; */
    margin-bottom: 10px;
    height: 32px;
    border-radius: 2px;
    color: white;
    padding: 0 15px;
}

.inputsRow .updateButton:hover{
    opacity: 0.7;
}

.inputsRow .addField{
    display: flex;
    width: 100%;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

.inputsRow .addField input{
    padding: 3px 20px;
    background: #121314;
    border: 1px solid #252526;
    border-radius: 2px;
    color: white;
    width: 82%;
}

.inputsRow .addField button{
    width: 18%;
    background: #0078c0;
    border: none;
    margin-left: 10px;
    margin-bottom: 10px;
    height: 32px;
    border-radius: 2px;
    color: white;
}

.inputsRow .addField button:hover{
    opacity: 0.7;
}

.inputsRow ul{
    color: white;
}

table{
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

table thead th{
    font-weight: 600;
}

table tbody tr{
    width: 100%;
    /*border: 1px solid white;*/
}

table tbody tr td{
    padding: 10px 30px;
    background: #121314;
    border: 1px solid #252526;

}

table tbody tr td .buttonAction {
    padding: 2px 7px;
    color: white;
    background: #0067ff;
    border-radius: 5px;
    cursor: pointer;
}
table tbody tr td .blue {
    margin-right: 10px;
    background: #0067ff;
}

table tbody tr td .red {
    background: #ed143d;
}

table tbody tr td .buttonAction:hover {
    opacity: 0.7;
}


@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

.modal {
  display: block;
  position: fixed; 
  z-index: 1;
  padding-top: 100px; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.modal .headerModal{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.modal .headerModal p{
    margin: 0;
}

.modal-content {
    background-color: #1b1b1b;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #171717;
    width: 80%;
    color: white;
}

.modal{
    display: flex;
    flex-direction: column;
}

.modal input, .modal select{
    padding: 3px 20px;
    background: #252526;
    border: 1px solid #433f3f;
    border-radius: 4px;
    color: white;
    width: 100%;
}

.modal button{
    width: 50%;
    padding: 5px 15px;
    background: #0078c0;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 30px;
    text-transform: uppercase;
}

.modal button:hover{
    opacity: 0.7;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}

.form {
  position: relative;
  z-index: 1;
  background: #121414;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
