/* Style for the logo tab */
.logo-tab {
    background-color: #333; /* Background color for the logo tab */
    padding: 20px 0; /* Adjust the padding as needed */
    text-align: center;
}

/* Style for the logo */
.logo {
    display: inline-block;
    max-width: 100%;
    height: 40px; /* Limit the height of the logo to 50 pixels */
}

/* Style for the buttons tab */
.buttons-tab {
    background-color: rgb(70, 70, 70); /* Background color for the buttons tab */
    padding: 20px 0; /* Adjust the padding as needed */
    padding-bottom: 30px;
    text-align: center;
}

/* Style for the buttons */
.buttons {
    margin-top: 10px;
}

.buttons a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #fff;
    margin: 0 20px;
    border-radius: 5px;
}

.buttons a:hover {
    background-color: #fff;
    color: #333;
}

.buttonarea {
    text-align: center;
    background-color: #F1EFEF;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

verification {
    font-size: 20px;
    font-weight: bold;
}

table, th,td{
    text-align: center;
    border: 2px solid black;
    border-collapse: collapse;
    border-radius: 3px;
}

th, td {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.tabletitle{
    font-size: 20px;
}

summary{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

/* Base Button Styles */
#printbutton {
    padding: 10px 20px;
    background-color: #CCC8AA;
    color: #191717;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

/* Hover Effect */
#printbutton:hover {
    background-color: #191717;
    color: #CCC8AA;
    transform: scale(1.05); /* Slight zoom effect on hover */
}
  
/* Focus (Keyboard Navigation) */
#printbutton:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.8); /* Light blue shadow on focus */
}

/* Add your CSS styles here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF1E4;
}

header {
    margin-top: 10px ;
    margin-right: 10px ;
    margin-left: 10px ;
    background-color: #CCC8AA;
    color: #191717;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

main {
    padding: 10px;
}

.report {
    background-color: #F1EFEF;
    padding: 5px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}