body {
    font-family: Arial, sans-serif;
}
.task-status-new {
    background-color: #e6f3ff;
    color: #0068b7;
}
.task-status-in-progress {
    background-color: #fff3e6;
    color: #b75600;
}
.task-status-review {
    background-color: #f0e6ff;
    color: #6a00b7;
}
.subtask-completed {
    text-decoration: line-through;
    color: #888;
}
.chat-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
}
.chat-message-user {
    background-color: #e6f3ff;
    align-self: flex-end;
    margin-left: auto;
}
.chat-message-system {
    background-color: #f0f0f0;
    align-self: flex-start;
}
.file-link {
    text-decoration: none;  /* הסרת קו תחתון */
    color: #333; /* צבע טקסט רגיל */
    font-weight: 500;
    transition: color 0.2s;
}

.file-link:hover {
    color: #007bff; /* שינוי צבע בלחיצה */
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.file-item img {
    margin-right: 10px;
}
