/* Time display styles */
.time-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.time-details .current-time,
.time-details .completion-time {
    display: flex;
    align-items: center;
}

.time-details span {
    margin-left: 5px;
    font-weight: 500;
}

/* Dark mode specific */
[data-theme="dark"] .time-details {
    border-top-color: rgba(255, 255, 255, 0.1);
}
