<title>Team Management Dashboard - DevOps Console</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: #333;
}
.dashboard-container {
display: grid;
grid-template-columns: 280px 1fr 350px;
grid-template-rows: 80px 1fr;
height: 100vh;
gap: 20px;
padding: 20px;
}
.header {
grid-column: 1 / -1;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 15px;
padding: 0 30px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.logo {
font-size: 1.5rem;
font-weight: 800;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.header-actions {
display: flex;
gap: 15px;
align-items: center;
}
.notification-bell {
position: relative;
background: #ff6b6b;
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
font-size: 1.2rem;
transition: all 0.3s ease;
}
.notification-bell:hover {
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.notification-count {
position: absolute;
top: -5px;
right: -5px;
background: #ee5a24;
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
font-size: 0.7rem;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.sidebar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
.team-overview {
margin-bottom: 30px;
}
.team-overview h3 {
margin-bottom: 15px;
color: #333;
font-size: 1.2rem;
}
.team-member {
display: flex;
align-items: center;
padding: 12px;
margin-bottom: 10px;
background: rgba(103, 126, 234, 0.1);
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.team-member:hover {
background: rgba(103, 126, 234, 0.2);
transform: translateX(5px);
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 12px;
background: linear-gradient(45deg, #ff9a9e, #fecfef);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: white;
font-size: 0.9rem;
}
.member-info h4 {
font-size: 0.9rem;
margin-bottom: 3px;
}
.member-role {
font-size: 0.8rem;
color: #666;
}
.status-indicator {
position: absolute;
right: 10px;
width: 10px;
height: 10px;
border-radius: 50%;
}
.status-online { background: #20bf6b; }
.status-away { background: #f7b731; }
.status-busy { background: #ff6b6b; }
.main-content {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
.content-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.content-title {
font-size: 1.8rem;
font-weight: 700;
color: #333;
}
.btn {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
border: none;
padding: 12px 25px;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.8rem;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(103, 126, 234, 0.3);
}
.btn-secondary {
background: linear-gradient(45deg, #ff9ff3, #f368e0);
}
.btn-success {
background: linear-gradient(45deg, #20bf6b, #01a3a4);
}
.btn-danger {
background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}
.task-board {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.task-column {
background: rgba(103, 126, 234, 0.05);
border-radius: 15px;
padding: 20px;
min-height: 400px;
}
.column-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid rgba(103, 126, 234, 0.2);
}
.column-title {
font-weight: 700;
font-size: 1.1rem;
}
.task-count {
background: #667eea;
color: white;
padding: 4px 12px;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 600;
}
.task-card {
background: white;
border-radius: 12px;
padding: 20px;
margin-bottom: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
cursor: move;
transition: all 0.3s ease;
border-left: 4px solid #667eea;
}
.task-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.task-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 12px;
}
.task-title {
font-weight: 600;
margin-bottom: 8px;
color: #333;
}
.task-priority {
padding: 4px 8px;
border-radius: 6px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
}
.priority-high { background: #ffebee; color: #c62828; }
.priority-medium { background: #fff3e0; color: #ef6c00; }
.priority-low { background: #e8f5e8; color: #2e7d32; }
.task-description {
font-size: 0.9rem;
color: #666;
margin-bottom: 15px;
line-height: 1.4;
}
.task-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.task-assignee {
display: flex;
align-items: center;
gap: 8px;
}
.assignee-avatar {
width: 28px;
height: 28px;
border-radius: 50%;
background: linear-gradient(45deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.8rem;
font-weight: 600;
}
.task-due {
font-size: 0.8rem;
color: #888;
}
.activity-panel {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
.activity-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.activity-item {
display: flex;
align-items: flex-start;
padding: 15px;
margin-bottom: 15px;
background: rgba(103, 126, 234, 0.05);
border-radius: 10px;
border-left: 3px solid #667eea;
transition: all 0.3s ease;
}
.activity-item:hover {
background: rgba(103, 126, 234, 0.1);
}
.activity-icon {
width: 32px;
height: 32px;
border-radius: 50%;
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: white;
flex-shrink: 0;
}
.activity-content {
flex: 1;
}
.activity-title {
font-weight: 600;
margin-bottom: 4px;
font-size: 0.9rem;
}
.activity-description {
font-size: 0.8rem;
color: #666;
margin-bottom: 5px;
}
.activity-time {
font-size: 0.7rem;
color: #999;
}
.quick-actions {
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid rgba(103, 126, 234, 0.2);
}
.quick-action-btn {
width: 100%;
margin-bottom: 10px;
padding: 12px;
font-size: 0.9rem;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
z-index: 1000;
animation: fadeIn 0.3s ease-out;
}
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 40px;
border-radius: 20px;
max-width: 600px;
width: 90%;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
animation: slideInUp 0.3s ease-out;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #333;
}
.form-control {
width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: #667eea;
}
textarea.form-control {
resize: vertical;
min-height: 100px;
}
select.form-control {
cursor: pointer;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.modal-actions {
display: flex;
gap: 15px;
justify-content: flex-end;
margin-top: 30px;
}
.progress-indicator {
position: fixed;
top: 20px;
right: 20px;
background: #20bf6b;
color: white;
padding: 12px 20px;
border-radius: 25px;
box-shadow: 0 10px 25px rgba(32, 191, 107, 0.3);
z-index: 1001;
transform: translateX(100%);
transition: transform 0.3s ease;
}
.progress-indicator.show {
transform: translateX(0);
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translate(-50%, -40%);
}
to {
opacity: 1;
transform: translate(-50%, -50%);
}
}
.drag-over {
background: rgba(103, 126, 234, 0.1);
border: 2px dashed #667eea;
}
@media (max-width: 1200px) {
.dashboard-container {
grid-template-columns: 1fr;
grid-template-rows: 80px auto auto auto;
}
.sidebar, .activity-panel {
order: 3;
}
}
@media (max-width: 768px) {
.task-board {
grid-template-columns: 1fr;
}
.form-row {
grid-template-columns: 1fr;
}
}
</style>