@font-face {
    font-family: 'QuinoaRound-Bold';
    src: url('QuinoaRound-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}
table {
    page-break-inside: avoid;
  }
  
  tr {
    page-break-inside: avoid;
  }
  
  td {
    word-wrap: break-word;
  }
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    text-align: center;
    color: #e74c3c;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header img {
    height: 100px;
}

.header .contact-info {
    text-align: right;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;

}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

table th {
    background-color: #e74c3c;
    color: white;
}

.download-btn {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    background-color: #e74c3c;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}