diff --git a/templates/edit_post.html b/templates/edit_post.html
index 3b3eb62..174ca56 100644
--- a/templates/edit_post.html
+++ b/templates/edit_post.html
@@ -41,6 +41,21 @@
input[type="datetime-local"] {
font-family: monospace;
}
+ /* Жирные заголовки и выравнивание */
+ .form-label {
+ font-weight: bold;
+ display: flex;
+ align-items: center;
+ margin-bottom: 0;
+ height: 38px; /* Высота стандартного поля ввода Bootstrap */
+ }
+ /* Выравнивание полей с заголовками */
+ .form-control, .form-select {
+ height: 38px;
+ }
+ textarea.form-control {
+ height: auto;
+ }