/* Keep Name and Phone columns on a single line */
.contact-table th:nth-child(1),
.contact-table td:nth-child(1),
.contact-table th:nth-child(3),
.contact-table td:nth-child(3) {
    white-space: nowrap;
}

/* Make sure the phone link itself doesn't wrap */
.contact-table td:nth-child(3) a {
    white-space: nowrap;
    display: inline-block;
}
