/**
 * Bruo Tech Table Styles
 */

.btt-wrapper {
    width: 100%;
}

.btt-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
    padding: 0;
}

.btt-specs {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.btt-item {
    display: flex;
    align-items: stretch;
}

.btt-item:nth-child(odd) {
    background-color: #ffffff;
}

.btt-item:nth-child(even) {
    background-color: #f9fafb;
}

.btt-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.4;
    padding: 10px 14px;
    width: 40%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.btt-value {
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
    padding: 10px 14px;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Dwie kolumny */
.btt-columns {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.btt-col {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .btt-columns {
        flex-direction: column;
    }
}

/* Pliki do pobrania */
.btt-files-wrapper {
    width: 100%;
}

.btt-files-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
    padding: 0;
}

.btt-files-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btt-file-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    text-decoration: none;
    padding: 14px 18px;
    transition: background 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.btt-file-item a:hover {
    background: #f8f9fa;
    border-color: #9ca3af;
}

.btt-file-item a .fi {
    font-size: 28px;
    color: #e53e3e;
    flex-shrink: 0;
    line-height: 1;
}

.btt-file-name {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}
