/* Překryv celé stránky */
    .modal-overlay {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: 
rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    /* Okno modalu */
    .modal-box {
      background: 
#ffffff;
      max-width: 500px;
      width: 100%;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 30px 
rgba(0, 0, 0, 0.25);
      position: relative;
      animation: modalFadeIn 0.3s ease;
      font-family: Arial, sans-serif;
    }

    .modal-box h2 {
      margin-top: 0;
      color: 
#222;
      font-size: 26px;
    }

    .modal-box p {
      color: 
#444;
      font-size: 16px;
      line-height: 1.6;
    }

    .modal-box strong {
      color: 
#0160a9;
    }

    /* Tlačítko zavření */
    .modal-button {
      margin-top: 20px;
      background: 
#0160a9;
      color: 
#ffffff;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .modal-button:hover {
      background: 
#1B88EF;
    }

    /* Křížek */
    .modal-close {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 28px;
      color: 
#999;
      cursor: pointer;
      line-height: 1;
    }

    .modal-close:hover {
      color: 
#333;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 480px) {
      .modal-box {
        padding: 24px 18px;
      }

      .modal-box h2 {
        font-size: 22px;
      }

      .modal-box p {
        font-size: 15px;
      }
    }/* CSS Document */