/* Task Panel Asana Layout */

.panel-properties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    padding: 0 24px 24px 24px;
    border-bottom: 1px solid #35383b;
}

.panel-full-section {
    padding: 24px;
    border-bottom: 1px solid #35383b;
}

.panel-full-section:last-child {
    border-bottom: none;
}

/* Activity Feed */
.activity-feed {
    margin-top: 24px;
}

.activity-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.activity-log {
    font-size: 13px;
    color: #9aa0a6;
    margin-top: 4px;
}

/* Summernote in panel */
#task-description .note-editor,
#comment-editor .note-editor {
    background: transparent !important;
    border-color: #35383b !important;
}

#task-description .note-editable,
#comment-editor .note-editable {
    background: #1d1f21 !important;
    color: #e8eaed !important;
}

#comment-editor .note-editable {
    min-height: 60px !important;
}

/* Select2 in panel */
.select2-container {
    width: 100% !important;
}

