/* Основные стили таблиц */
.rcc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.rcc-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.4;
}

.rcc-table tr:last-child td {
    border-bottom: none;
}

.rcc-table tr:nth-child(even) {
    background-color: #fafafa;
}

.rcc-table tr:hover {
    background-color: #f8f9fa;
}

/* Заголовки в левой колонке */
.rcc-table .certLabel {
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa;
    width: 35%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid #e0e0e0;
}

/* Стили для статусов */
.pro_info {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro_info_success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

.pro_info-indent {
    margin-left: 0;
}

/* Стили для блока с изменениями номеров */
.rcc-table .plate-info {
    background: #fff;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.rcc-table .plate-info p {
    margin: 8px 0;
    color: #34495e;
    font-size: 13px;
}

.rcc-table .plate-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Заголовок для второй таблицы */
.rcc-table.rightBox {
    border-left: 4px solid #3498db;
}

.rcc-table.rightBox .certLabel {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-right: 1px solid #2980b9;
}

/* Контейнер для данных */
#rcc-data-block {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .rcc-table {
        border-radius: 6px;
    }
    
    .rcc-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .rcc-table .certLabel {
        width: 40%;
        font-size: 12px;
    }
    
    #rcc-data-block {
        padding: 20px;
        margin: 15px 0;
    }
    
    .pro_info {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* Градиентные фоны для строк */
.rcc-table tr:nth-child(even) {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.rcc-table tr:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Иконки статусов */
.pro_info_success:before {
    content: '✓ ';
    font-weight: bold;
}