/* special/edit-form.css */
.edit-form {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 20px; /* Добавляем отступ снизу */
}

.edit-form h2 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.edit-form input,
.edit-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.2s ease;
    background: white;
}

.edit-form textarea {
    min-height: 80px;
    resize: none;
}

.edit-form input:focus,
.edit-form textarea:focus {
    border-color: var(--highlight-color, #2C88FF);
    box-shadow: 0 0 0 2px rgba(44, 136, 255, 0.1);
    outline: none;
}

.edit-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    min-width: 120px;
}

.edit-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.edit-form button:active {
    transform: translateY(0);
}

/* Темная тема */
.theme-dark .edit-form {
    background: #2c2c2e;
}

.theme-dark .edit-form h2 {
    color: #ffffff;
}

.theme-dark .edit-form input,
.theme-dark .edit-form textarea {
    background: #1c1c1e;
    border-color: #3c3c3e;
    color: #ffffff;
}

/* Стили для поля заголовка */
#calculator-title {
    width: 100%;
    padding: 12px 16px;
    font-size: 18px !important;  /* Увеличиваем размер шрифта */
    line-height: 1.5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    background: white;
    color: #333;
}

/* Стили для поля описания */
#calculator-description {
    width: 100%;
    padding: 12px 16px;
    font-size: 18px !important;  /* Такой же размер как у заголовка */
    line-height: 1.5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    background: white;
    color: #333;
    min-height: 80px;
    resize: none;
}

/* Состояния фокуса */
#calculator-title:focus,
#calculator-description:focus {
    border-color: var(--highlight-color, #2C88FF);
    box-shadow: 0 0 0 2px rgba(44, 136, 255, 0.1);
    outline: none;
}

/* Темная тема */
.theme-dark #calculator-title,
.theme-dark #calculator-description {
    background: #1c1c1e;
    border-color: #3c3c3e;
    color: #ffffff;
}