/* css/style.css */
#wrapper {
    display: flex;
    width: 100%;
}

#wrapper.toggled #sidebar {
    margin-left: -260px;
}

#sidebar {
    min-width: 260px;
    max-width: 260px;
    transition: all 0.3s;
}

#page-content-wrapper {
    width: 100%;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -260px;
    }
    #wrapper.toggled #sidebar {
        margin-left: 0;
    }
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    padding-left: 20px;
    margin-bottom: 20px;
    border-left: 2px solid #dee2e6;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #007bff;
}