.tfr-form {
    max-width: 960px;
    margin: 0 auto;
}

.tfr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tfr-field {
    margin-bottom: 1rem;
}

.tfr-field-half {
    flex: 1 1 300px;
}

.tfr-error {
  color: red;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0.8rem 3rem;
  display: block;
}

.tfr-success-message{
    font-size: 2rem;
    font-weight: 600;
	margin-bottom: 5rem;
}

.tfr-ico-status,
.tfr-ico-help {
    font-size: 0.875em;
    margin-top: 0.5rem;
	margin-left: 1rem;
}

.tfr-ico-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tfr-ico-refresh {
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    border-radius: 3px;
    line-height: 1;
}

.tfr-ico-refresh:hover {
    background: #eee;
}

.tfr-ico-status .tfr-ico-retry {
    margin-left: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.meta-form-f{
  background-color: var(--blue-light);
  border-radius: var(--corner-radius-medium);
  padding: 2rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 4.8rem;
  justify-content: flex-start;
  margin: 2.4rem 0 1rem;
  color: var(--blue);
}

.trf-submit-button{
	margin-top: 1.5rem !important;
}

.trf-submit-button:disabled,
.trf-submit-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.trf-submit-button:disabled:hover {
  opacity: 0.5;
}

.tfr-big-space-up{
	margin-top: 8rem !important;
}

.tfr-form h2{
	margin-bottom: 2rem;
}

/* ====== CHECKBOXY ====== */
/* wrapper label */
.tfr-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

/* skryť natívny checkbox */
.tfr-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
}

/* zelený štvorec */
.tfr-checkbox span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 4px;
    background: var(--green);
    box-sizing: border-box;
    vertical-align: middle;
}

/* modrá fajka – defaultne skrytá */
.tfr-checkbox span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 4px;
    height: 9px;
    border-right: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: rotate(40deg);
    opacity: 0;
}

/* zobrazí fajku pri :checked */
.tfr-checkbox input[type="checkbox"]:checked + span::after {
    opacity: 1;
}

/* žiadny sivý rámček pri fókus / kliku */
.tfr-checkbox input[type="checkbox"]:focus + span::before {
    outline: none;
}

/* ====== IČO – zelený refresh button ====== */

.tfr-ico-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tfr-ico-input-wrap input[type="text"] {
    flex: 1 1 auto;
}

/* základný stav */
.tfr-ico-refresh {
    margin-left: 8px;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: var(--green);
    color: var(--blue);       /* modrá ikonka */
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* hover – len svetlejšia zelená, žiadna sivá */
.tfr-ico-refresh:hover {
    background: var(--green-hover);
}

/* žiadny sivý rámček pri fokuse */
.tfr-ico-refresh:focus {
    outline: none;
    box-shadow: none;
}