body {
    font-family: sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a {
    color: #FFA347;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    text-align: center;
    color: #333;
    margin: 0;
    padding: 15px 0;
}

h2 {
    text-align: center;
    color: #333;
    margin: 0;
    padding: 15px 0;
}

.container {
    width: 420px;
    max-height: 90vh;
    margin: 100px 0;
}

.logo {
    height: 42px;
}

/* .logo-top {
    position: fixed;
    top: 25px;
    left: 25px;
} */

.user-profile {
    position: absolute;
    top: 15px;
    right: 25px;
    margin-bottom: 5px;
    color: lightgray
}

.user-profile span {
    color: gray
}

.tasks {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tutorial {
    padding: 10px 45px;
    background: #fafafa;
}

.tutorial p {
    color: #4c4c4c;
}

.tutorial .highlight {
    color: #FFA347;
}

.footer {
    color: gray;
    padding: 20px 0 50px 0;
}

#messages {
    list-style-type: none;
    padding: 0;
}

#messages li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

#messages li.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#messages li.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

#messages li.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    transition: width .5s linear;
}

#task-input {
    width: calc(100% - 20px);
    padding: 15px 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#task-input:focus {
    border: 1px solid #FFA347;
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    color: #4c4c4c;
    background: #fafafa;
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li:last-child {
    border-bottom: none;
}

.task-title {
    flex: 1;
    margin-left: 10px;
}

.task-done {
    text-decoration: line-through;
}

.remove-task {
    color: #f00;
    margin-left: 10px;
    cursor: pointer;
    display: inline;
    visibility: hidden;
    text-decoration: none;
}

.task-item.active .remove-task {
    visibility: visible;
}

@media screen and (min-width: 768px) {
    li:hover .remove-task {
        visibility: visible;
    }
}

.done-symbol {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #87C38F;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.done-symbol.done {
    background-color: #87C38F;
    color: white;
}

.tutorial-done-symbol {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #87C38F;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* User form */
.user-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-group input:focus {
    border: 1px solid #FFA347;
    outline: none;
}

.user-form button {
    background-color: #FFA347;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.user-form button:hover {
    background-color: #fc9936;
}

#my-chart {
    width: 400px;
    height: 200px;
    margin-bottom: 35px;
}