/* Стили для таблиц в записях блогов */
.blog-detail__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-detail__content table thead th {
    background-color: #343a40;
    color: #ffffff;
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #495057;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-detail__content table tbody td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

.blog-detail__content table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.blog-detail__content table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.blog-detail__content table tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1) !important;
    transition: background-color 0.2s ease;
}

.blog-detail__content table tfoot td {
    background-color: #e9ecef;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    font-weight: 600;
}
