
.table_detail {
    display: inline-block;
    border-radius: 10px;
    padding: 0 0 1.2em 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.02);
    box-shadow: 1px 5px 10px -5px rgba(0,0,0,0.2);
}
.darkmode .table_detail {
    background-color: rgba(255,255,255,0.02);
    box-shadow: none;
}

.table_detail h3 {
    margin: 0 0 0.8em 0;
    padding: 0.5em 1em;
    background-color: rgba(0,0,0,0.03);
}
.darkmode .table_detail h3 {
    background-color: rgba(255, 255, 255, 0.04);
}

.table_detail table {
    width: 100%;
    border-collapse: collapse;
}

.table_detail table td.tdtitle {
    text-align: right;
    padding: 0 0.5em 0 2em;
    color: rgba(0,0,0,0.5);
}
.darkmode .table_detail table td.tdtitle {
    color: rgba(255,255,255,0.5);
}

.table_detail table td {
    text-align: left;
    min-width: 8em;
    max-width: 12em;
    padding: 0 1em 0 0;
}

.table_detail table td.spacer {
    height: 2px;
    text-align: center;
}

.table_detail table td.spacer p {
    margin: 0.7em 4em;
    border-radius: 50%;
    width: 70%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.table_detail table td.spacer p {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.table_detail table td a {
    color: inherit;
}

.table_detail table td a:hover {
    color: rgba(0,0,0,0.95);
    cursor: pointer;
}
.darkmode .table_detail table td a:hover {
    color: rgba(255,255,255,0.95);
}







@media (max-width: 899px) {
    .table_detail {
        font-size: 0.9em;
    }
    .table_detail table td, .table_detail table td.tdtitle {
        padding: 1px;
        margin: 1px;
        min-width: 1em;
    }
}






