body {
    padding-top: 5rem;
    background-color: #f1f1f1;
}

.std-widget {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 25px;
    transition: all 0.2s linear;
}

.std-widget:hover {
    -webkit-box-shadow: 0 0 15px 0 #878787;
    -moz-box-shadow: 0 0 15px 0 #878787;
    box-shadow: 0 0 12px 0 #878787;
}

.std-share {
    border-radius: 5px;
    padding: 8px 15px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
    transition: all 0.2s linear;
}

.std-share:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 10px 0 #878787;
    -moz-box-shadow: 0 0 10px 0 #878787;
    box-shadow: 0 0 10px 0 #878787;
}

.std-ref-input {
    background-color: #ffffff !important;
}

.std-table {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border-spacing: 0;
}

.std-table th {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 10px 20px;
}

.std-table th, td {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #ffffff;
}

.std-table th:first-child {
    border-top-left-radius: 10px;
}

.std-table th:last-child {
    border-top-right-radius: 10px;
    border-right: none;
}

.std-table td {
    padding: 10px 20px;
    background: #1abc9c;
    color: #ffffff;
}

.std-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.std-table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.std-table tr td:last-child {
    border-right: none;
}