body {
    font-family: "PT Sans";

}
.header {
    background-color: #4e3ea1;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    border-bottom: 5px solid #000000;
}
.navbar {
    background-color: #6f5fc6;
    overflow: auto;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 35px;
}
.navbar a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.sidebar {
    width: 250px;
    float: left;
    background-color: #6859ba;
    padding: 20px;
    border-right: 3px solid #000000;
    min-height: 700px ;
    border-radius: 15px;
}
.sidebar h3 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 5px;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
    text-align: center;
}
.sidebar ul {
    list-style-type: none;
    padding-inline-start: 5px;
}
.sidebar ul li {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f3f3f3;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}
.sidebar ul li:hover {
    background-color: #8c11df;
    color: #ffffff;
}
.main-content {
    margin-left: 300px;
    margin-top: 5px;
    padding: 20px;
    background-color: #e4e2fb;
    min-height: 500px;
    border-radius: 15px;
}
.main-content h2 {
    font-size: 32px;
    color: #383067;
    margin-left: 20px;
    margin-top: 10px;
    text-align: left;
}
.main-content p {
    color: #6f5fc6;
    line-height: 1.6px;
    margin-left: 20px;
    margin-bottom: 30px;
}
.task-card {
    background-color: white;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    border-left: 5px solid #ffffff;
    border-right: 3px solid #c2b9ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

}
.task-card:hover {
    background-color: #c2b9ff;
    color: #000000;
    transform: translateY(-5px);
    p {
        color: #000000;
    }
}
.footer {
    clear: both;
    background-color: #6859ba;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}
.footer p {
    margin: 5px;
    background: #6859ba;
}
