body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
}

header ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
    text-transform: none;
}

header nav ul li.right {
    margin-left: auto;
}

.username-link {
    text-transform: none;
}

header nav ul li.divider {
    flex-grow: 1;
}

.stock-list {
    margin-top: 20px;
}

.stock-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.quote {
    margin-top: 20px;
}

.cart {
    margin-top: 20px;
}

.cart-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.recommendations {
    margin-top: 20px;
}

.recommendation-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}