:root {
    --box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.363);

}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
}
ul {
    list-style: none;
    padding: 0;
}

h1 {
    margin-top: 20px;
    font-size: 48px;
}

h2 {
    font-size: 48px;
    font-weight: 600;
}

h3 {
    font-size: 36px;
}

h5 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}
.content {
    padding-top: 50px;
}
.project-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-left: 4px solid #007bff;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e3e6f0;
    border-radius: 12px 12px 0 0 !important;
}

.progress {
    border-radius: 10px;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #e3e6f0;
    transition: background-color 0.2s;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item:last-child {
    border-bottom: none;
}

.task-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

.border-left-primary { border-left-color: #4e73df !important; }
.border-left-success { border-left-color: #1cc88a !important; }
.border-left-info { border-left-color: #36b9cc !important; }
.border-left-warning { border-left-color: #f6c23e !important; }
.border-left-danger { border-left-color: #e74a3b !important; }
.border-left-secondary { border-left-color: #858796 !important; }

