.icon-info {
    color: #21a9e1;
}

.icon-mediumblue {
    color: mediumblue;
}

.icon-red {
    color: red;
}

.icon-green {
    color: green;
}

.icon-warning {
    color: #ff9600;
}

.custom-border {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.text-red {
    color: red;
}

.text-blue {
    color: blue; !important;
}

.text-white {
    color: white;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.text-black {
    color: black; !important;
}

.item_icons {
    max-width: 16px;
    max-height: 16px;
}

.item_column_store {
    width: 100%;
    max-width: 300px;
    overflow: hidden; /* Чтобы скрывать излишки текста, если нужно */
    text-overflow: ellipsis; /* Для обрезки текста многоточием */
    white-space: nowrap; /* Оставляет текст в одной строке */
    padding: 0px;
}

.supplier_row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

.marketplace_row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

/* Общий стиль для контейнера в колонке store */
.cell-content-left {
    display: flex;
    flex-direction: column; /* Вертикальное выравнивание элементов */
    justify-content: flex-start; /* Элементы прижаты к началу */
    align-items: flex-start; /* Текст и содержимое выравниваются влево */
    text-align: left; /* Левое выравнивание текста */
}

/* Стили для строк */
.supplier_row_left, .marketplace_row_left {
    display: block;
    width: 100%; /* Элементы занимают всю ширину контейнера */
    margin: 0; /* Убираем отступы */
}

/* Горизонтальная линия */
hr.no_margin {
    margin: 0; /* Убираем внешние отступы */
    margin-top: 2px; /* Убираем внешние отступы */
    margin-bottom: 2px; /* Убираем внешние отступы */
    border: none; /* Убираем стандартное оформление, если нужно */
    border-top: 1px solid #ccc; /* Линия */
    width: 100%; /* Ширина на всю ячейку */
}

.dataTables_wrapper {
    width: 100%;
    overflow-x: auto;
}

/* Выравнивание содержимого в центре */
.dataTables_wrapper table tbody tr td {
    vertical-align: middle;
    padding: 2px;
}

.dataTables_wrapper table tbody tr td.item_column_store {
    padding: 3px; /* Убираем все отступы */
}

.text-center {
    text-align: center; /* Горизонтальное выравнивание */
    vertical-align: middle; /* Вертикальное выравнивание */
}

.mb2 {
    margin-bottom: 2px;
}

/* Чётные строки */
table.dataTable tbody tr.even {
    background-color: #ffffff;
}

/* Нечётные строки */
table.dataTable tbody tr.odd {
    background-color: #fcfcfc;
}

#table_items tbody tr:hover {
    background-color: #F5F5F5; /* Зеленоватый цвет */
}

.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    border: none;
    margin: 10px 0;
}

.hr-with-text::before,
.hr-with-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #000;
}

.hr-with-text span {
    padding: 0 10px;
    font-weight: bold;
    color: #333;
}

.pagination a::after {
    content: none !important;
    display: none !important;
}

.pagination .next a {
    padding-right: 10px !important;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.plan {
    position: relative;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.plan.popular {
    border-color: #ffc107;
    box-shadow: 0 4px 12px rgba(255,193,7,0.4);
}
.plan.popular::before {
    content: '★ Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.plan h3 {
    margin-top: 0;
    font-size: 24px;
}
.plan p {
    font-size: 18px;
    margin: 10px 0 8px;
    color: #555;
}
.price-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 12px 0;
}
.price-main {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    color: #000;
}
.price-main .cents {
    font-size: 14px;
    vertical-align: super;
    margin-left: 2px;
    position: relative;
    top: -0.4em;
    color: #777;
}
.price-period {
    font-size: 14px;
    color: #777;
    margin-left: 8px;
    margin-top: 4px;
}
.plan button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.plan button:hover {
    background: #0056b3;
}


.small-text { font-size: 12px; color: #888; }
.history-table { margin-top: 10px; width: 100%; border-collapse: collapse; display: none; }
.history-table th, .history-table td { border: 1px solid #ccc; padding: 4px; text-align: left; }

#plansTable tr, #plansTable th, #plansTable td {
    text-align: center;
}

/*extension-*/
.install-box {
    text-align: center;
    margin-bottom: 3rem;
}

.install-button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.install-button:hover {
    background-color: #3367d6;
}

.version-log {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.version {
    margin-bottom: 1.5rem;
}

.version h3 {
    margin-bottom: 0.5rem;
    color: #4285f4;
}

.version ul {
    margin-top: 0;
    padding-left: 1.2rem;
}

.chrome-icon {
    width: 24px;
    height: 24px;
}

.chrome-icon-small {
    width: 12px;
    height: 12px;
}

@media (max-width: 600px) {
    .install-button {
        flex-direction: column;
    }
}

.height-content {
    min-height: 80%;
}

