+
+ {t("DETAILS.STATUS")}
+ {t(STATUS_KEYS[item.status])}
+
+
+ {t("DETAILS.SCHEDULED")}
+ {item.start.local}
+
+ {hasEnd && (
+
+ {t("DETAILS.ACTUAL")}
+ {item.end.local}
+
+ )}
+
+ );
+};
diff --git a/src/features/online-board/components/details-panels/panels.scss b/src/features/online-board/components/details-panels/panels.scss
new file mode 100644
index 00000000..8589f762
--- /dev/null
+++ b/src/features/online-board/components/details-panels/panels.scss
@@ -0,0 +1,53 @@
+.details-panel {
+ padding: 12px 0;
+ font-size: 14px;
+ line-height: 1.5;
+}
+
+.details-panel__row {
+ display: flex;
+ justify-content: space-between;
+ padding: 6px 0;
+ border-bottom: 1px solid #eee;
+
+ &:last-child {
+ border-bottom: none;
+ }
+}
+
+.details-panel__label {
+ color: #666;
+}
+
+.details-panel__value {
+ color: #000;
+ font-weight: 500;
+}
+
+.details-panel__status {
+ display: inline-block;
+ padding: 2px 8px;
+ border-radius: 4px;
+ background: #f0f4f8;
+ color: #2060c0;
+ font-size: 12px;
+}
+
+.details-panel__icons {
+ display: flex;
+ gap: 12px;
+ flex-wrap: wrap;
+}
+
+.details-panel__icon {
+ display: inline-flex;
+ align-items: center;
+ gap: 6px;
+ text-decoration: none;
+ color: inherit;
+
+ img {
+ width: 24px;
+ height: 24px;
+ }
+}