@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap');

body {
    font-family: "Quicksand", sans-serif;
    font-size: 110%;
    margin: 20px;
    padding: 20px;
    background-color: #e8f0ef;
}
.container {
    max-width: 1100px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}
h1 {
    text-align: center;
    color: #555;
    font-weight: 500;
}
.card {
    background: #fdfdfd;
    padding: 15px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
h2, h4 {
    color: #444;
    text-align: center;
    font-weight: lighter;
}
h3 {
    color: #444;
    font-weight: lighter;
}
h4 {
    font-size: 18px;
}
ul {
    font-weight: lighter;
    list-style-type: none;
    padding-left: 20px;
    color: #444;
}
li {
    display: flex;
    align-items: center;
    color: #444;
    margin: 10px 0px;
}
input[type="checkbox"] {
    margin-right: 8px;
}
li.disabled, h3.disabled {
    color: lightgray;
}
hr {
    border: 1px solid #f0f0f0;
    margin: 50px 0;
}
.tab-bar {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 20px;
}
.tab-bar a {
    display: inline-block;
    padding: 10px 28px;
    text-decoration: none;
    color: #888;
    font-weight: 400;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.tab-bar a:hover {
    color: #444;
}
.tab-bar a.active {
    color: #444;
    font-weight: 500;
    border-bottom-color: #2196F3;
}
