﻿@media print {
    /* Print-specific styles go here */
    body {
    }

    .no-print {
        display: none; /* Hide elements with the class 'no-print' */
    }

    .dialog-header {
        margin-top: 10px;
        height: 45px;
        color: black;
        background-color: white;
        display: none !important;
    }

    /* Target Bootstrap form controls and remove borders */
    .form-control,
    .form-control:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        /* Optional: set a background color to white if the input has a background in screen view */
        background-color: #fff !important;
        display: inline-flex !important;
        font-family: Segoe UI,Helvetica Neue, Arial, Helvetica, sans-serif;
        font-size: 100%;
        font-weight: 400;
    }

    /* Target Bootstrap input groups to remove borders between elements if necessary */
    .input-group-text,
    .input-group-text:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background-color: #fff !important;
    }

    select {
        /* Standard property for modern browsers */
        appearance: none !important;
        -webkit-appearance: none !important; /* Chrome, Safari, Edge, Opera */
        -moz-appearance: none !important; /* Firefox */
    }

    .card {
        border: none !important;
    }

    .card-header {
        background-color: none !important;
    }
}
