.card-header {
    background-color: #3a5a78;
    color: white;
}

.status-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
}

.table-responsive {
    overflow-x: auto;
}

.development-icon {
    font-size: 2rem;
    color: #3a5a78;
}

.project-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #3a5a78;
}