﻿/* ==========================================================
   PriorSeven.css – widget-specific rules only
   ----------------------------------------------------------
   • Global layout, table grid, and title styling live in
     Orders.css
   • This file keeps just the selector styling and any tiny
     tweaks for the “Prior 7 Days” card.
   ==========================================================*/

/* ----- optional micro-offset so table sits a hair below the title */
#prior7Content {
    margin-top: 0.5rem;
}

/* ----- enhanced company <select> ----- */
#priorSevenCompany {
    display: block;
    width: auto; /* was 100% – allow room for button */
    max-width: 120px;
    margin-block: .75rem;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#priorSevenCompany:focus {
    border-color: #86b7fe;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075), 0 0 0 .2rem rgba(13,110,253,.25);
    outline: none;
}

/* larger touch target on narrow screens */
@media (max-width:600px) {
    #priorSevenCompany {
        font-size: 1.125rem;
        padding: .75rem 1rem;
        max-width: 100%;
    }
}
