.project-management {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.pm-header h2 {
    color: #2c3e50;
    font-weight: 600;
}

.pm-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pm-btn i {
    font-size: 14px;
}

.pm-btn.primary {
    background-color: #3498db;
    color: white;
}

.pm-btn.primary:hover {
    background-color: #2980b9;
}

.pm-btn.secondary {
    background-color: #95a5a6;
    color: white;
}

.pm-btn.secondary:hover {
    background-color: #7f8c8d;
}

.pm-form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.pm-form-group {
    margin-bottom: 20px;
}

.pm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-form-group input,
.pm-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.pm-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pm-col {
    flex: 1;
}

.pm-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.pm-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pm-table th,
.pm-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pm-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.pm-table tr:hover {
    background-color: #f9f9f9;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.planning { background: #f39c12; color: white; }
.status-badge.in-progress { background: #3498db; color: white; }
.status-badge.completed { background: #2ecc71; color: white; }
.status-badge.on-hold { background: #95a5a6; color: white; }
.status-badge.cancelled { background: #e74c3c; color: white; }

.pm-no-projects {
    text-align: center;
    padding: 30px;
    color: #7f8c8d;
    font-style: italic;
}