/* Product Info Forms Page Styles */
.product-info-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
}

.product-docs-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    overflow-x: auto;
}

.product-docs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-docs-table thead {
    background-color: var(--secondary-color);
}

.product-docs-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid #ddd;
}

.product-docs-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.product-docs-table tbody tr:hover {
    background-color: #f8f9fa;
}

.product-name {
    font-weight: 500;
    color: #333;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.doc-link.technical {
    color: #0073bb;
    border: 1px solid #0073bb;
}

.doc-link.technical:hover {
    background-color: #0073bb;
    color: white;
}

.doc-link.safety {
    color: #d9534f;
    border: 1px solid #d9534f;
}

.doc-link.safety:hover {
    background-color: #d9534f;
    color: white;
}

.doc-icon {
    display: inline-block;
    width: 20px;
    height: 24px;
    background-color: currentColor;
    margin-right: 8px;
    position: relative;
    border-radius: 2px;
}

.doc-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 6px;
    border-style: solid;
    border-color: white white transparent transparent;
}

.no-doc {
    color: #999;
    font-style: italic;
}

.no-documents {
    text-align: center;
    padding: 40px 0;
    color: #666;
}

/* Responsive Design - Mobil için özel tasarım */
@media (max-width: 768px) {
    .product-info-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .product-docs-container {
        padding: 15px;
        margin: 0 -10px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .product-docs-table {
        font-size: 14px;
        border: none;
    }
    
    .product-docs-table thead {
        display: none;
    }
    
    .product-docs-table, 
    .product-docs-table tbody, 
    .product-docs-table tr {
        display: block;
    }
    
    .product-docs-table tr {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 10px;
        background-color: white;
    }
    
    .product-docs-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    .product-docs-table td:last-child {
        border-bottom: none;
    }
    
    .product-docs-table td::before {
        content: attr(data-label);
        font-weight: bold;
        margin-right: 10px;
        color: var(--primary-color);
    }
    
    .doc-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Mobil için daha küçük ekranlar */
@media (max-width: 576px) {
    .product-info-title {
        font-size: 1.3rem;
    }
    
    .product-docs-table tr {
        padding: 5px;
    }
    
    .product-docs-table td {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-docs-table td::before {
        margin-bottom: 5px;
    }
    
    .doc-link {
        margin-top: 5px;
        width: 100%;
        justify-content: center;
    }
}