.taskpane {
    font-family: "Segoe UI", sans-serif;
    width: 100%;
    color: #323130;
}

.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f3f2f1;
    border-bottom: 1px solid #e1e1e1;
}

.status-pill {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
    background: #e8f5e9;
    font-size: 12px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #e1e1e1;
    background: #fafafa;
}

.tab {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #605e5c;
}

.tab.active {
    color: #0078d4;
    border-bottom: 2px solid #0078d4;
    background: #fff;
}

.tab-content {
    display: none;
    padding: 16px;
}

.tab-content.active {
    display: block;
}

.card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
    background: #fff;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-btn {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    color: #0078d4;
}

.form-group {
    margin-bottom: 12px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #c8c6c4;
}

textarea {
    min-height: 80px;
}

.button-bar {
    display: flex;
    gap: 8px;
}

.btn {
    flex: 1;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn.primary { background: #0078d4; color: #fff; }
.btn.secondary { background: #f3f2f1; color: #323130; }
