#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
}
  
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
  
table th, table td {
    border: 1px solid #fff;
    padding: 5px;
    text-align: left;
    border-radius: 4px;
}
table th {
    background-color: rgb(238, 238, 238);
}
table td {
    background-color: rgb(240, 240, 240);
}
  
.modal-content ul {
    list-style-type: none;
    padding: 0;
}
  
a {
    text-decoration: none;
    color: #42b983;
    cursor: pointer;
}
a:hover {
    opacity: 0.7;
}
  
.modal {
    display: block;
    position: fixed;
    z-index: 1;
    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-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
  
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}