
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.appraisal-header-card {
    background: linear-gradient(to right, #1d4ed8, #3b82f6); /* Blue-700 to Blue-500 */
    color: white;
    padding: 2rem;
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    text-align: center;
}

@media print {
    /* Hide sidebar and navigation */
    #sidebar,
    #logo-sidebar,
    aside,
    nav,
    .sidebar,
    header,
    footer {
        display: none !important;
    }

    /* Make print content full width */
    #printSection {
        width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
    }

    /* Hide buttons and non-printable elements */
    button,
    .no-print {
        display: none !important;
    }
}

/* Mobile responsive tables */
@media (max-width: 768px) {
    .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
    }

        .overflow-x-auto table {
            font-size: 0.875rem;
        }

        .overflow-x-auto th,
        .overflow-x-auto td {
            padding: 0.5rem !important;
            white-space: nowrap;
        }
}

/*body {
  margin-bottom: 60px;
}*/