﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Register your Campsite — standalone pill button, absolutely positioned in the nav */
.reg-campsite-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e87722;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    z-index: 1001;
}
.reg-campsite-btn:hover {
    background-color: #cf6510;
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 991px) {
    .reg-campsite-btn {
        display: none;
    }
}

/* On mobile the nav is position:absolute so the header collapses to 0 height,
   causing the nav to overlap the content. Give the header a min-height so
   content flows naturally below the nav bar. */
@media (max-width: 991px) {
    .header {
        min-height: 95px;
    }
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

