body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    width: 70%;
    margin: 20px auto;
    border: 2px solid #000;
    padding: 20px;
}
.header {
    text-align: center;
}
.header img {
    width: 100px;
}
.header h1 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
}
.header p {
    margin: 0;
    font-size: 14px;
}
.report-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
    margin: 20px 0;
}
.info {
    width: 100%;
    margin: 20px 0;
}
.info td {
    padding: 5px 10px;
    vertical-align: top;
}
.info th {
    padding: 5px 10px;
    text-align: left;
    font-weight: normal;
}
.signature {
    margin-top: 30px;
}
.signature p {
    margin: 0;
}
.bold {
    font-weight: bold;
}
.underline {
    text-decoration: underline;
}

.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 2px solid #0070f3; /* Accent color */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.install-banner-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333333;
}

.install-banner-content p {
    font-size: 16px;
    margin: 0 0 10px;
}

.install-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.install-button {
    background-color: #0070f3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.install-button:hover {
    background-color: #005bb5;
}

.dismiss-button {
    background-color: #e0e0e0;
    color: #333333;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.dismiss-button:hover {
    background-color: #cccccc;
}
