nav{
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-logo{
    height: 50px;
    padding-left: 20px;
    margin-top: 8px;
}

main.body-content{
    min-height: calc(100vh - 145px);

}
footer{
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    height: 60px;
}

.login-form{
    max-width: 400px;
    box-shadow: var(--shadow);
    padding: 30px 10px;
    border-radius: 10px;
    width: 100%;
}

.login-container{
    height: calc(100vh - 145px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-bar{
    width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-bar-item{
    padding: 10px 20px;
    cursor: pointer;
    margin: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.side-bar-item:hover{
    background-color: var(--purple);
    color: white;
}

.dashboard-content{
    width: calc(100% - 180px);
    height: calc(100vh - 60px);
    padding: 20px;
    overflow: auto;
    padding-bottom: 30px;
    background:#d3b8f010;
    border-radius: 10px 0 0 0;
}

.dashboard-content::-webkit-scrollbar {
    width: 10px;
}

.dashboard-content::-webkit-scrollbar-thumb {
    background-color: var(--purple);
    border-radius: 10px;
}

.remove-row{
    height: 35px;
}


.quotes-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.quote-card{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background-color: white;
}
.nav-active{
    background-color: var(--purple);
    color: white;
}