/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

.invalid {
    border-color: red;
}

button:disabled,
button:disabled:hover,
button[disabled],
button[disabled=disabled],
button[disabled=disabled]:hover,
button[disabled]:hover {
    background-color: #cccccc;
    /*color: #666666;*/
}

/* Remove focus outline from h1 when FocusOnNavigate sets focus for accessibility */
h1[tabindex="-1"]:focus {
    outline: none;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    background: var(--dark-color);
    color: var(--white-color);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-consent__text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent__text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.cookie-consent__btn {
    border: 0;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-consent__btn--accept {
    background: var(--primary-color);
    color: var(--white-color);
}

.cookie-consent__btn--reject {
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.cookie-consent__btn {
    transition: background 0.3s, color 0.3s;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

.cookie-consent__btn--reject:hover,
.cookie-consent__btn--reject:focus {
    background: var(--white-color);
    color: var(--dark-color);
}