/* Modern CSS Variables */
:root {
    --primary-color: #b1171e;
    --primary-dark: #8b1116;
    --primary-light: #d41f28;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --background: #f8f9fa;
    --surface: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Default view - mobile and portrait tablet */

.mobile{
    display: inline;
}
.mobile img{
    height: 32px;
    width: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.desk{
    display: none;
}
.deskblock{
    display: none;
}

/* Mobile-specific enhancements */
@media only screen and (max-width: 768px) {
    body {
        font-size: 3.5vw;
    }
    
    .topnav {
        border-radius: var(--radius-md);
    }
    
    .topnav a {
        padding: 14px 12px;
    }
    
    .button {
        padding: 14px 20px;
        font-size: 3.5vw;
        width: 100%;
        margin: 8px 0;
    }
    
    .boxed fieldset {
        padding: 16px;
    }
    
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modal {
        max-width: 95%;
        max-height: 95vh;
    }
}

.button {
    text-decoration: none;
    padding: 12px 24px;
    margin: 10px 3px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1.3vw;
    border: none;
    font-weight: 600;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.buttonsmall {
    text-decoration: none;
    margin-left: 3px;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.buttonsmall:hover {
    opacity: 0.85;
}

.editclient{
    text-decoration: none;
    transition: all var(--transition-fast);
}

.editclient:hover {
    opacity: 0.8;
}

.topnav {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
}

.topnav a {
    float: left;
    text-align: center;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.topnav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: currentColor;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.topnav a:hover::before {
    width: 80%;
}

.flash {
    background: linear-gradient(135deg, #fff9e6 0%, #FFF5D7 100%);
    border-left: 4px solid var(--warning-color);
    padding: 12px;
    border-radius: var(--radius-sm);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo{
    background-repeat: no-repeat;
    background-size: contain;
    height: 14vw;
    width: 25vw;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}


.boxed fieldset{
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    padding: 24px;
    transition: all var(--transition-base);
}

.boxed fieldset:hover {
    box-shadow: var(--shadow-lg);
}

.boxed legend{
    padding: 8px 16px;
    font-style: normal;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--primary-color);
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
}

.boxed label {
    display: inline-block;
    width: 25vw;
    min-width: 100px;
    margin-top: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.adminlabel {
    line-height: 1.75;
}

div.errorpopup div.ui-widget-header {
    color: white;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 16px;
}

div.messagepopup div.ui-widget-header {
    color: white;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 16px;
}

span.warning {
    margin-left: 1vw;
    font-size: smaller;
    font-style: italic;
    width: auto;
    color: var(--warning-color);
    font-weight: 500;
}

input, select, textarea {
    font-size: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface);
    transition: all var(--transition-base);
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(177, 23, 30, 0.1);
}

input:hover, select:hover, textarea:hover {
    border-color: var(--text-secondary);
}

/* Enhanced select styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b1171e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b1171e' d='M6 3l5 5H1z'/%3E%3C/svg%3E");
}

/* Textarea specific */
textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Disabled state */
input:disabled, select:disabled, textarea:disabled {
    background: var(--background);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
}

input[type=checkbox] {
    transform: scale(1.2);
    cursor: pointer;
    accent-color: var(--primary-color);
}

.inputsmall{
    width: 18vw;
    margin-bottom: 1vw;
}

.inputmediumsmall{
    width: 20vw;
    margin-bottom: 1vw;
}

.inputmedium{
    width: 35vw;
    margin-bottom: 1vw;
}

.inputlarge{
    width: 40vw;
    margin-bottom: 1vw;
}

.inputextralarge{
    width: 55vw;
    margin-bottom: 1vw;
}

.displayfield {
    color: var(--text-primary);
    font-weight: 500;
}

::placeholder {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9em;
    opacity: 0.7;
}

.boxed input{
    margin-bottom: 1.5vw;
}

.boxed #newUser{
    text-decoration: none;
    float: right;
}

/* Ensure consistent horizontal spacing and vertical alignment for all member rows */
#membersdiv > span[id^="memberspan-"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remove extra bottom margin on inline member row fields so they share the same baseline */
#membersdiv .inputmedium,
#membersdiv .inputmediumsmall,
#membersdiv .datetime-control {
    margin-bottom: 0;
}

.asideright {
    float: right;
}

#confirmclientinfo {
	padding: 20px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-radius: var(--radius-lg);
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow-md);
}

#createuser{
    float: left;
}

.clear{
    clear: both;
}

.error{
    padding: 12px 16px;
    font-style: normal;
    text-align: center;
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border-left: 4px solid var(--danger-color);
    border-radius: var(--radius-sm);
    margin: 10px 0;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

ul{
    margin-top: -20px;
}

.notnegative {
    margin-top: -10px;
}

.instructions{
    padding: 3px;
}

li{
    padding: 10px;
}

.instructions li{
    padding: 1px;
}

#dailysummary{
    /*float: left;*/
    background: var(--surface);
    margin: 20px;
    padding-bottom: 16px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

#noinfo {
    padding: 20px 5vw;
    background: var(--background);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-secondary);
}

#clients_served_for_date{
    float: left;
}

#summarytotals{
    padding: 20px;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

#photoid {
    width: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

#photoid:hover {
    transform: scale(1.02);
}

.summarylineamount{
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1em;
}

.summaryfor{
    display: inline-block;
    font-size: 1.4em;
}

.visits th, .visits td{
   text-align: left;
}

.visits table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visits th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.visits td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.visits tr:hover td {
    background: var(--background);
}

.visits tr:last-child td {
    border-bottom: none;
}

.clients table, .history{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.clients td, .visits td, .history td{
    padding: 16px;
}

.clients th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    text-align: left;
}

.clients td {
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.clients tr:hover td {
    background: var(--background);
}

.clients tr:last-child td {
    border-bottom: none;
}

.users th{
    text-align: left;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.users td{
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.users tr:hover td {
    background: var(--background);
}

.users h3{
    text-align: center;
    color: var(--text-primary);
    font-size: 1.8em;
    margin: 20px 0;
}

.users table {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.history th, .history td {
    text-align: center;
    padding: 16px;
}

.history th {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.history tr:hover td {
    background: var(--background);
}

.visits td, .history td{
    vertical-align: top;
}

#totals_for_year_by_location {
    width: 100%;
    margin: 0 auto;          /* center the container within the page content area */
    text-align: center;      /* center the inline table(s) inside */
    display: flex;           /* lay out year tables in a row */
    flex-wrap: wrap;         /* allow wrapping to next line on smaller screens */
}

#totals_for_year_by_location td:nth-child(1) {
	padding-right: 50px;
}

#totals_for_year_by_location table {
	margin: 20px auto;
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

#totals_for_year_by_location th {
	border-bottom: 3px solid var(--primary-color);
	padding: 0 16px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85em;
	letter-spacing: 0.05em;
    text-align: center;
    height: 60px;
}

#totals_for_year_by_location td {
	padding: 14px;
	border-bottom: 1px solid var(--border-color);
}

#totals_for_year_by_location tr:hover td {
	background: var(--background);
}

#totals_for_year_by_location td:nth-child(2) {
	text-align: right;
	font-weight: 600;
	color: var(--primary-color);
}

#totals_for_year_by_location h3 {
	margin-bottom: 5px;
	color: var(--text-primary);
	font-size: 1.6em;
}

#totals_for_year_by_location caption {
	padding: 16px;
	background: var(--primary-color);
	color: white;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footnote {
    margin: 20px;
    font-size: 0.85em;
    font-style: italic;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--background);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-color);
}

.pickedupby{
    font-style: italic;
    font-size: 3vw;
    color: var(--text-secondary);
}
    
.nodob{
    font-style: italic;
    background: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 100%);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

#or{
    padding: 25px 0;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

#or::before,
#or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: var(--border-color);
}

#or::before {
    left: 0;
}

#or::after {
    right: 0;
}

#hchildren:after{
    content: "Ch";
}
#hadults:after{
    content: "Ad";
}
#hseniors:after{
    content: "Sen";
}


.grouptitle{
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 12px;
}

.grouplist{
    padding-left: 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 12px 0;
    box-shadow: var(--shadow-sm);
}

.paperworkneeded, #paperworkprompt {
    color: var(--success-color);
    margin-bottom: 3vw;
    font-weight: 500;
}

#paperworkprompt label {
    width: 80%;
}

#paperworkprompt div {
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}

#paperworkprompt div input {
    margin-bottom: 0vw;
}

.newpaperworkinstructions {
    font-size: 0.9em;
    color: var(--text-secondary);
    background: var(--background);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-color);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 100%;
    font-size: 2.6vw;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body > * {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Modern heading styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

h1 {
    font-size: 2.5em;
    color: var(--primary-color);
}

h2 {
    font-size: 2em;
    color: var(--primary-color);
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
}

h5 {
    font-size: 1.1em;
}

h6 {
    font-size: 1em;
    font-weight: 600;
}

/* Caption styling for tables */
caption {
    font-size: 1.3em;
    font-weight: 700;
    padding: 12px;
    color: var(--text-primary);
    text-align: left;
}

#videos p {
    margin-bottom: 0.5vw;
    margin-top: 2vw;
}

footer{
    text-align: center;
    font-size: 2.25vw;
    font-style: italic;
    color: var(--text-secondary);
    padding: 30px 0;
    margin-top: 40px;
    border-top: 2px solid var(--border-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

footer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

footer hr {
    display: none;
}

.printview {
    display: none;
}

/* Page container with better spacing */
body > div {
    animation: fadeIn 0.4s ease;
}

/* Main content wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form improvements */
form.boxed {
    margin: 20px auto;
}

form.boxed br {
    display: block;
    margin: 8px 0;
}

/* Better link styling */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* Improved list styling */
ul {
    margin-top: 0;
    padding-left: 24px;
}

li {
    padding: 8px 0;
    line-height: 1.6;
}

.instructions li {
    padding: 4px 0;
}

/* Card-like containers */
.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin: 20px 0;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Badge/Chip styling */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    background: var(--background);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.badge.success {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.badge.warning {
    background: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
}

.badge.danger {
    background: var(--danger-color);
    color: white;
    border-color: var(--danger-color);
}

.badge.info {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Skeleton loading for content */
.skeleton {
    background: linear-gradient(90deg, var(--background) 25%, var(--border-color) 50%, var(--background) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Tooltip styling */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: var(--text-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.85em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 1000;
}

[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Landscape tablet and desktop tweaks */
@media only screen and (min-width: 1200px) {

    body {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .mobile{
        display: none;
    }

    .desk{
        display: inline;
    }

    .deskblock{
        display: block;
    }

    .visits th:nth-child(2), .visits th:nth-child(3), .visits th:nth-child(4), .visits th:nth-child(6), .visits td:nth-child(2), .visits td:nth-child(3), .visits td:nth-child(4) , .visits td:nth-child(6) {
        text-align: center;
    }

    .button {
        padding: 12px 28px;
        margin-left: 3px;
        font-size: 1rem;
    }

    .logo{
        height: 7vw;
        width: 14vw;
    }

    .boxed label {
        width: 15vw;
    }

    input[type=checkbox] {
        transform: scale(1.5);
    }

    span.warning {
        margin-left: 10vw;
    }

    #photoid {
        max-width: 333px;
    }

    .inputsmall{
        width: 5vw;
    }

    .inputmediumsmall{
        width: 15vw;
    }

    .inputmedium{
        width: 20vw;
    }

    .inputlarge{
        width: 20vw;
    }

    .inputextralarge{
        width: 40vw;
    }

    #hchildren:after{
        content: "Children";
    }
    #hadults:after{
        content: "Adults";
    }
    #hseniors:after{
        content: "Seniors";
    }

    .pickedupby{
        font-size: 0.95vw;
    }

    footer{
        font-size: 0.95rem;
    }

    .summaryfor{
        margin-top: 2vw;
        margin-bottom: 2vw;
    }

    /* Enhanced hover effects for desktop */
    .button, .buttonsmall {
        cursor: pointer;
    }

    a {
        transition: all var(--transition-fast);
    }

    a:hover {
        opacity: 0.85;
    }

}

@media print {
    .topnav {
        display: none;
    }
    footer {
        display: none;
    }
    .clients td, .visits td, .history td{
        padding-bottom: 0;
    }
    .clients table, .visits table, .history {
        border-spacing: 0;
    }
    .logo{
        display: none;
    }
    .printview {
        display: inline;
    }
    select {
        display: none;
    }
    #dailysummary {
        padding-left: 0;
    }
    .summaryfor{
        display: inline-block;
        font-size: larger;
    }
    .pickedupby {
        display: inline;
    }
    .actionbuttons {
        display: none;
    }
}
