body {
    font-family: Arial, sans-serif;
    text-align: center;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
}

td {
    border: 1px solid #000;
    border-radius: 5px; /* Заокруглені краї */
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 24px; /* Збільшений розмір шрифту */
}

h1 {
    color: #333;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}

form {
    margin-bottom: 20px;
}

input[type="text"] {
    width: 300px;
    padding: 5px;
    font-size: 16px;
}

label {
    font-size: 16px;
}

@media print {
    form, button {
        display: none;
    }
}

.engaging-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #3498db;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .engaging-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }

/* Center the content of the section */
section {
    text-align: center;
  }
  
  /* Center the h2 */
  h2 {
    text-align: center;
  }
  
  /* Style the unordered list */
  ul {
    list-style-type: none;
    padding: 0;
    /* Remove default padding */
    margin: 0 auto;
    /* Center the list */
    max-width: 300px;
    /* Adjust as needed */
  }
  
  /* Style list items */
  li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    /* Align text to the left for better readability */
  }
  
  /* Create checkmark before list items */
  li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-weight: bold;
  }

  .print-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #1fcd16;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .print-button:hover {
    background-color: #559605;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }