
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sidebar {
    top: 0;
    left: 0;
    position: fixed;
    width: 240px;
    height: 100vh;
    padding:20px 15px;
    color: aliceblue;
    background: rgb(32, 23, 85);
}

.sidebar-tittle{
    font-size: 20px;
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
}
.menu{
    margin-top: 15px;
    position: relative;
    list-style: none;
    padding: 0;
}

.menu li {
    padding: 1rem;
    margin: 8px 0;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
}

.menu li:hover, .active {
    background: #e0e0e058;
}

.menu a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.main--content{
    margin-left: 240px;
    background: #ebe9e9;
    min-height: 100vh;
    padding: 1rem;
}

.header--wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    padding: 10px 2rem;
    margin-bottom: 1rem;
}

.header--tittle{
    color: rgb(55, 33, 175);;
}

.card--container{
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: justify;
}
