.content-outer {
    background-color: #cccccc;
    background-image: var(--backgroundImage);
}
    .content-inner {
        box-shadow: 7px 7px 5px rgba(0,0,0,.5);  /* Darker box shadow works with a wider range of background images */
        padding-top: 35px;
    }

.title-grid {
    display: grid;
    grid-template-columns: auto 100px;
    margin: 0;
    padding: 0;
}
    .title-grid h3 {
        margin: 10px 0 5px 0;
    }
    .title-grid .title-cell {
        align-items: center;
        display: flex;
        justify-content: left;
        margin: 0;
        padding: 0;
    }
    .title-grid .button-cell {
        align-items: center;
        display: flex;
        justify-content: right;
        margin: 0;
        padding: 0;
    }
  
.bought-list-container {
    background-color: #ccffcc;
    border: 3px #009900 solid;
    border-radius: 5px;
    font-size: 18px;
    margin: 30px 0px 10px 0px;
    padding: 15px 20px;
}
    .bought-list-container .link {
        color: blue;
        font-weight: bold;
    }

.edit-this-list-button-container {
    padding-top: 10px;
    padding-right: 10px;
    text-align: right;
}

@media (max-width: 600px) {
    .bread-crumbs-outer {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .content-outer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .content-inner ul {
       padding-left: 30px;
    } 
}

@media print
{
    html, html * {
        background-color: white !important;
        background-image: none !important;
    }

    div.jdspad-header h1.logo1,
    div.jdspad-header h1.logo2, 
    div.jdspad-header h1.logo3, 
    div.jdspad-header h1.logo4, 
    div.jdspad-header h1.logo5,
    div.top-nav,
    div.top-nav-link-container,
    div.logged-in-text,
    p.logged-in,
    div.bread-crumbs-outer,
    div.bottom-nav-outer,
    .jdspad-footer {
        display: none;
    }

    div.jdspad-header, div.top-left-background, div.top-right-background {
        border: 0px black solid;
    }
    div.jdspad-header h1.logo1, div.jdspad-header h1.logo1 a {
        color: black !important;
    }

    div.content {
        margin-top: -70px;
    }

    h4 {
        font: 12pt Georgia;
        font-weight: bold;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    ul {
        padding-top: 0px;
        margin-top: 4px;
    }
    li {
        font: 12pt Georgia;
        padding-bottom:3px;
    }
    a {
        color: black;
        text-decoration: none;
    }

    .bought-list-container {
        display: none;
    }
}
