.responsive-table {
    display: none;
}
.responsive-cards {
    display: block;
}
@media (min-width: 768px) {
    .responsive-table {
        display: table;
        width: 100%;
    }
    .responsive-cards {
        display: none;
    }
}
.responsive-cards .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
}
.responsive-cards .card h5 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}
.responsive-cards .card div {
    margin-bottom: 8px;
}
.table th,
.table td {
    padding: 30px 10px;
    text-align: center;
    vertical-align: middle;
}
.table th {
    background-color: #f7f7f7;
}
.table td {
    font-weight: 600;
}
input[type="radio"] {
    appearance: auto;
    -webkit-appearance: radio;
    -moz-appearance: radio;
    width: 20px;
    height: 20px;
    background-color: initial;
    border-radius: initial;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.loading {
    display: none;
}
.loading.show {
    display: inline-block;
}