.taskpress-archives-wrapper {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.taskpress-archives-header {
    margin-bottom: 2rem;
}

.taskpress-archives-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    color: #172b4d;
}

.taskpress-archives-subtitle {
    margin: 0;
    color: #8590a2;
    font-size: 0.95rem;
}

.taskpress-archives-section {
    margin-bottom: 2rem;
}

.taskpress-archives-section-title {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #172b4d;
    border-bottom: 2px solid #dfe1e6;
    padding-bottom: 0.5rem;
}

.taskpress-archives-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.taskpress-archive-item {
    background: #fff;
    border: 1px solid #dfe1e6;
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.taskpress-archive-card-item:hover {
    background-color: #f0f4f8;
    border-color: #0079bf;
    box-shadow: 0 2px 8px rgba(0, 121, 191, 0.1);
}

.taskpress-archive-item-content {
    flex: 1;
    min-width: 0;
}

.taskpress-archive-item-title {
    margin: 0;
    font-size: 1rem;
    color: #172b4d;
    font-weight: 600;
}

.taskpress-archive-item-list {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    color: #8590a2;
}

.taskpress-archive-item-description {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: #626f86;
    line-height: 1.4;
}

.taskpress-archive-item-meta {
    margin-left: 1rem;
    flex-shrink: 0;
}

.taskpress-archive-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f0f4f8;
    color: #626f86;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.taskpress-archives-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #8590a2;
}

.taskpress-archives-empty-icon {
    width: 64px;
    height: 64px;
    fill: #dfe1e6;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.taskpress-archives-empty p {
    margin: 0;
    font-size: 1.1rem;
}
.taskpress-archive-restore-icon{
    width: 20px;
    height: 20px;
    fill: #0079bf;
    cursor: pointer;
}