body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    margin: 0;
    min-height: 100vh;
}
.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: auto;
    max-width: 90vw;
    text-align: left;
    overflow-x: auto;
}
.center-text {
    text-align: center;
}
.homepage-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 600px;
}
.homepage-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.homepage-container p {
    margin-bottom: 1.5rem;
    color: #555;
}
.homepage-container .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}
.homepage-container .btn:hover {
    background-color: #388e3c;
}
.logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}
h1 {
    text-align: center;
    margin-bottom: 1rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
input, select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
select.input {
    font-size: 1em; /* nebo třeba 16px */
    padding: 12px;
}
button {
    width: 100%;
    padding: 0.75rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}
.error-message {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    white-space: pre-line;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
th, td {
    border-bottom: 1px solid #ccc;
    padding: 0.5rem 1rem;
    text-align: left;
    white-space: nowrap;
}
th {
    background-color: #eee;
    font-weight: bold;
}
a.btn, .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
}
a.btn:hover, .btn:hover {
    background-color: #388e3c;
}
.term-item{
  display:grid;
  grid-template-columns: 1fr auto; /* 1. sloupec roste, 2. přesně pro checkbox */
  align-items:center;
  column-gap:.5rem;
  width:100%;
}
.term-text {
  display: flex;
  justify-content: space-between; /* levá část vlevo, pravá část vpravo */
  width: 100%;
}
.term-checkboxes{
  margin-bottom:1.5rem;          /* ↓ odsazení od dalšího labelu */
}
/* ↓ přidáme jen tohle */
.term-item input[type="checkbox"]{
  transform: translateY(6.9px);
}




.input{ @apply w-full border rounded px-3 py-2; }
.btn-primary{ @apply bg-indigo-600 hover:bg-indigo-700 text-white font-medium px-6 py-2 rounded; }

.faq-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.faq-container h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-container h3 {
    margin-top: 2rem;
    color: #4CAF50;
}

.faq-container ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.faq-container ul li {
    margin-bottom: 0.5rem;
}

.faq-container blockquote {
    margin: 1rem 0;
    font-style: italic;
    color: #666;
    border-left: 4px solid #4CAF50;
    padding-left: 1rem;
}

.confirm-item {
  display: flex;
  justify-content: space-between; /* text vlevo, checkbox vpravo */
  align-items: center;            /* vertikálně vycentruje checkbox */
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.confirm-item label {
  flex: 1; /* text zabere zbytek šířky */
}

.confirm-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Řádek s akcemi u každého eventu */
.actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;     /* ať se to na malém displeji zalomí hezky */
}
.actions form { margin: 0; }

/* Tlačítka v řádku: žádné top marginy a žádná 100% šířka */
.actions .btn { margin: 0; }
.actions button.btn { width: auto; }

/* Pokud chceš ponechat 100% šířku jen v hlavních formulářích: */
/* .form-container button { width: 100%; }  */
/* a globální `button { width:100% }` klidně smaž/omez */
