/* WAI-Core: src/app/static/css/base.css v5 */

html {
  text-size-adjust: 100%;
}

body {
    background-color: var(--brand-color-background);
    font-family: 'Roboto', sans-serif;
}

main {
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 100px;
    margin-right: 100px;
}

section {
    background-color: var(--brand-color-container-background);
    max-width: 700px;
    border-radius: var(--brand-border-radius);
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-color-primary);
    font-family: 'Roboto Mono', monospace;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.1rem;
    line-height: 1.4;
}

button {
    display: inline-block;
    cursor: pointer;
    background-color: var(--brand-color-cta);
    color: var(--brand-color-primary);
    border-radius: var(--brand-border-radius);
    margin: 5px 0;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--brand-color-primary);
}

input,
select,
textarea {
    background-color: var(--brand-color-container-background);
    color: #fff;
    border: 1px solid var(--brand-color-primary);
    border-radius: var(--brand-border-radius);
    padding: 0.5rem;
}

input::placeholder,
textarea::placeholder {
    color: var(--brand-color-container-foreground-light);
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"] {
    background-color: var(--brand-color-container-background);
    color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="week"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

p, li {
  color: white;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #4CAF50 #1c2d3a;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: #1c2d3a;
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
    background-color: #4CAF50;
    border-radius: 6px;
    border: 2px solid #1c2d3a;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #66bb6a;
}
