/* Вынесенные стили со страницы продуктов для глобального применения */
.products-page-container {
    min-height: 100vh;
}
.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
}
.form-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
}
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}
.section-icon {
    font-size: 1.3rem;
    margin-right: 0.75rem;
}
.form-section {
    padding: 1.5rem 0;
}
.form-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Иконки действий для карточек */
.action-icons-container {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
}
.action-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
    border: 1px solid #dee2e6;
    background: transparent;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.action-icon:hover {
    color: #212529;
    box-shadow: none;
    transform: scale(1.2);
}
.action-icon:active {
    box-shadow: none;
    transform: scale(0.95);
}
.action-icon i {
    line-height: 1;
}

