.characteristics thead th {
    border-top: 0;
    border-bottom: 1px solid #dee2e6;
}

/* Стили для виджета списка загруженных файлов */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.file-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #555;
}

.file-name {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
}

.file-name a {
    color: #007bff;
    text-decoration: none;
}

.file-name a:hover {
    text-decoration: underline;
}

.file-actions {
    display: flex;
    gap: 5px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.btn-sm i {
    margin: 0;
}

/* Стилизация виджета списка загруженных изображений */
.image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-item {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: grab;
}

.image-item:active {
    cursor: grabbing;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.delete-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    text-decoration: none;
    transition: background-color 0.3s;
}

.delete-icon:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #c82333;
}

/* Стилизация виджета для отображения характеристик в карточке объекта */
.characteristic-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.characteristic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: grab;
}

.characteristic-item:active {
    cursor: grabbing;
}

.characteristic-name {
    font-weight: bold;
    color: #333;
}

.characteristic-value {
    color: #555;
}

/* Стили для видео-плеера */

.video-item {
    margin-bottom: 20px;
    text-align: center;
}

.video-item .video-js {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}


/* Стили для карточек */
.funnel-cards .card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.funnel-cards .card:hover {
    transform: translateY(-5px);
}

.funnel-cards .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.funnel-cards .card-text {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Стили для графика */
#salesFunnelChart {
    max-width: 100%;
    height: auto;
}

/* CSS для индикатора прогресса */
#upload-progress {
    height: 20px;
    margin-top: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

#upload-progress .progress-bar {
    background-color: #007bff;
    transition: width 0.3s ease;
}

.progress-bar {
    background-color: #007bff;
    transition: width 0.3s ease;
}
