section.card-holder {
    display: flex; 
    flex-wrap: wrap; 
    gap: 1rem;
    justify-content: start;
}

article.dose-card {
    width: 350px;
}

ul.pillbox {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    gap: 0.5rem;
    width: 100%;
}

ul.pillbox li {
    display: block;
    list-style: none;
    margin: 0.25rem 0px;
    padding: 0.25rem 0.75rem;
    background-color: rgb(1, 127, 192);
    color: white;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: bold;
}

ul.pillbox li .amt {
    font-size: 0.75rem;
    font-weight: normal;
}

ul.pillbox li .next-increase {
    font-size: 0.75rem;
    font-weight: normal;
}

div.gantt-container {
    padding: 0 0 1rem 0;
    margin: 0 0 1rem 0;
    box-sizing: border-box;
    overflow: auto;
}

div.gantt-header {
    grid-row-start: 1; 
    grid-row-end: span 1;
    font-size: small;
    align-self: bottom;
    padding: 2px 2px;
    margin: 0.25rem 0 0 0;
}

div.gantt-row {
    margin: 0 0;
    padding: 0;
    grid-column-start: label-start;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: [label-start] 100px [chart-start];
    grid-auto-columns: 60px;
    grid-auto-rows: auto;
    row-gap: 0.25rem;
    column-gap: 0.25rem;
    grid-auto-flow: row;
}

div.gantt-row-border {
    grid-column-start: 1;
    grid-row-start: 1;
    border-top-width: 4px; 
    border-top-style: solid;
    height: 0px;
}

div.gantt-item-placeholder {
    padding: 0.25rem 0.75rem;
    background-color: inherit;
    color: #525F7A;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0.25rem 0;
    grid-column-start: 2;
    grid-column-end: span 3;
}

div.gantt-item {
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: #8191B5;
    color: #ffffff;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0.25rem 0;
    &.stripes {
        background-color: #525F7A;
        background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,.1) 5px, rgba(255, 255, 255, .1) 12px);
    }
    &.fade {
        background-color: #525F7A;
    }
    .amt {
        font-size: small;
    }
}

div.gantt-this-week {
    border-left-width: 4px;
    border-left-style: solid;
    font-weight: bold;
}

a.stealth-link {
    color: inherit; 
    text-decoration: none;
    &:hover {
        text-decoration: underline;
    }
}


@media (max-width: 700px) {
    section.card-holder {
        justify-content: center;
    }
    
    article.dose-card {
        width: 100%;
    }
}