diff --git a/EnvelopeGenerator.ReceiverUI/EnvelopeGenerator.ReceiverUI.csproj b/EnvelopeGenerator.ReceiverUI/EnvelopeGenerator.ReceiverUI.csproj
index 3a8e4067..65cb7c93 100644
--- a/EnvelopeGenerator.ReceiverUI/EnvelopeGenerator.ReceiverUI.csproj
+++ b/EnvelopeGenerator.ReceiverUI/EnvelopeGenerator.ReceiverUI.csproj
@@ -40,4 +40,12 @@
+
+
+ Always
+
+
+ Always
+
+
\ No newline at end of file
diff --git a/EnvelopeGenerator.ReceiverUI/Shared/MainLayout.razor b/EnvelopeGenerator.ReceiverUI/Shared/MainLayout.razor
index 16fd71b5..e667fbac 100644
--- a/EnvelopeGenerator.ReceiverUI/Shared/MainLayout.razor
+++ b/EnvelopeGenerator.ReceiverUI/Shared/MainLayout.razor
@@ -7,6 +7,11 @@
@Body
+
@code {
diff --git a/EnvelopeGenerator.ReceiverUI/wwwroot/css/app.css b/EnvelopeGenerator.ReceiverUI/wwwroot/css/app.css
index eca33d5b..b3bb0f19 100644
--- a/EnvelopeGenerator.ReceiverUI/wwwroot/css/app.css
+++ b/EnvelopeGenerator.ReceiverUI/wwwroot/css/app.css
@@ -11,7 +11,7 @@ html, body {
}
article {
- height: calc(100vh - 70px);
+ height: calc(100vh - 36px);
display: flex;
flex-direction: column;
overflow: hidden;
@@ -68,7 +68,7 @@ article {
}
.dx-blazor-reporting-container {
- height: calc(100vh - 130px) !important;
+ height: calc(100vh - 166px) !important;
width: 100% !important;
}
@@ -242,4 +242,38 @@ article {
align-items: center;
gap: 7px;
flex-wrap: wrap;
+}
+
+/* ── Footer ──────────────────────────────────────────────────────────────── */
+.receiver-footer {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 36px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 10px;
+ padding: 0 20px;
+ background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
+ color: rgba(255, 255, 255, 0.75);
+ font-size: 0.72rem;
+ z-index: 100;
+ flex-shrink: 0;
+}
+
+.receiver-footer a {
+ color: rgba(255, 255, 255, 0.90);
+ text-decoration: none;
+ transition: color 0.15s;
+}
+
+.receiver-footer a:hover {
+ color: #ffffff;
+ text-decoration: underline;
+}
+
+.receiver-footer__sep {
+ opacity: 0.4;
}
\ No newline at end of file