.sidebar-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-sizing: border-box;
}
.sidebar-title {
font-size: 16px;
font-weight: 700;
color: #ffffff;
margin-bottom: 18px;
padding-left: 10px;
border-left: 4px solid #3498db;
}
.dday-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.dday-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
background: rgba(255, 255, 255, 0.03);
border-radius: 8px;
transition: all 0.2s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.dday-item:hover {
transform: translateX(4px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(52, 152, 219, 0.3);
}
.dday-badge {
min-width: 54px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
font-weight: 800;
font-size: 13px;
background: #2c3e50;
color: #bdc3c7;
flex-shrink: 0;
}
.dday-badge.urgent {
background: #e74c3c;
color: #ffffff;
box-shadow: 0 0 12px rgba(231, 76, 60, 0.4);
}
.dday-info {
display: flex;
flex-direction: column;
gap: 2px;
overflow: hidden; }
.dday-name {
font-size: 14px;
font-weight: 600;
color: #ffffff;
line-height: 1.2;
white-space: nowrap; overflow: hidden;
text-overflow: ellipsis; }
.dday-type {
font-size: 11px;
color: #95a5a6;
white-space: nowrap;
} .tag-cloud {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.tag {
display: inline-block;
padding: 5px 10px;
background: rgba(52, 152, 219, 0.1);
color: #3498db;
border-radius: 15px;
font-size: 12px;
text-decoration: none;
border: 1px solid rgba(52, 152, 219, 0.2);
transition: all 0.2s;
}
.tag:hover {
background: #3498db;
color: #ffffff;
}