padding: 1rem 0;
}
table {
- border-collapse: collapse;
+ border-radius: 1rem;
+ border-collapse: separate;
+ border-spacing: 0;
}
td, th {
- border: 1px solid gray;
- border-radius: 1rem;
padding: 0.25rem 0.5rem;
text-align: left;
+ border: 1px solid gray;
+ }
+ th:first-child {
+ border-top-left-radius: 1rem;
+ }
+ th:last-child {
+ border-top-right-radius: 1rem;
+ }
+ tr:last-child td:first-child {
+ border-bottom-left-radius: 1rem;;
+ }
+ tr:last-child td:last-child {
+ border-bottom-right-radius: 1rem;;
}
.red {
background-color: #e9967a;