.mt-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    .mt-heading {
        display: flex;
        flex-direction: column;
        gap: none;
        & > h1 {margin-bottom: 0;}
        & > .mt-links {
            display: flex;
            flex-wrap: wrap;
            column-gap: 1rem;
        }    
    }
    .mt-hours-container {
        /* select the seocnd table to get rid of margin-bottom */ 
        & > .span12 > .row-fluid:nth-child(2) table.table {
            margin-bottom: 0;
        }
    }
    .mt-room-nav-wrap {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        outline: 1px solid #dedede;
        border-radius: 4px;
        padding: .5rem;
        box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, .05);
        background: #FEFEFE;
        
        & > .mt-leader {text-decoration: underline;}
        & > .mt-room-nav {
            column-width: 8rem;
            & > div {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }
    }
}
