/* calculator-styles.css */
.category-products-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.category-products-table th,
.category-products-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}



h6 {
    margin: 20px 0 10px;
    font-size: 1.2em;
    color: #333;
}

h6 a {
    text-decoration: none;
    color: inherit;
}

h6 a:hover {
    text-decoration: underline;
}



.actions {
    display: flex;
    gap: 10px;
}

#telegram-check {
    margin-top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
}



/* Стиль для описания калькулятора */

.calculator-description {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.calculator-description h3 {
    margin-top: 0;
    color: #333;
}

.calculator-description h4 {
    margin: 20px 0 10px;
    color: #0073aa;
}

.calculator-description ul {
    padding-left: 20px;
}

.calculator-description ul li {
    margin-bottom: 10px;
}

.calculator-description a {
    color: #0073aa;
    text-decoration: none;
}

.calculator-description a:hover {
    text-decoration: underline;
}



/* Стили для таблицы */
.category-products-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border-radius: 10px; /* Скругление углов */
    overflow: hidden; /* Чтобы скругление работало */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Тень для таблицы */
}

.category-products-table th,
.category-products-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.category-products-table th {
    background-color: #f5f5f5;
}

/* Стили для кнопок */
.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.action-row {
    display: flex;
    gap: 10px;
}

.button {
    padding: 12px 24px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px; /* Скругление углов */
    flex: 1;
    text-align: center;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #005177;
}

/* Стиль для кнопки "Добавить товар" при наведении */
#add-product-button:hover {
    background-color: #ff5722; /* Оранжевый цвет при наведении */
}


#add-product-button {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

#add-product-button:hover {
    background-color: #ff5722; /* Красный цвет при наведении */
}