/* Technical Data Sheet Styles */
:root {
    --primary-color: #1E40AF;
    --secondary-color: #10B981;
    --light-gray: #f0f4f8;
    --border-color: #ddd;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-size: 12px;
}

.datasheet-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    page-break-after: always;
}

.datasheet-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 60px;
    margin-right: 20px;
}

.datasheet-title-container {
    flex-grow: 1;
}

.datasheet-title {
    color: var(--primary-color);
    margin: 0;
    font-size: 24px;
}

.datasheet-subtitle {
    font-weight: normal;
    margin: 5px 0 0;
    font-size: 16px;
    color: var(--text-light);
}

.datasheet-meta {
    text-align: right;
    font-size: 12px;
}

.datasheet-meta p {
    margin: 3px 0;
}

.datasheet-content {
    padding: 20px 30px;
}

.section {
    margin-bottom: 20px;
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 12px;
}

.property-table th {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: left;
    padding: 8px 12px;
    font-size: 13px;
}

.property-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
}

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

.property-name {
    font-weight: bold;
    width: 40%;
}

.two-column {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.column {
    flex: 1;
}

.chart-container {
    margin: 15px 0;
    height: 250px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.application-item {
    background-color: var(--light-gray);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.application-icon {
    margin-right: 8px;
    color: var(--primary-color);
}

.notes {
    background-color: var(--light-gray);
    padding: 12px 15px;
    border-left: 4px solid var(--primary-color);
    margin: 15px 0;
    font-size: 11px;
}

.notes p {
    margin: 5px 0;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 3px 0;
}

.website-info {
    text-align: right;
}

.disclaimer {
    font-size: 10px;
    font-style: italic;
    margin-top: 10px;
    color: var(--text-light);
    text-align: center;
    padding: 0 30px 15px;
}

/* Print styles */
@media print {
    body {
        background-color: white;
        margin: 0;
        padding: 0;
    }
    
    .datasheet-container {
        box-shadow: none;
        max-width: 100%;
        margin: 0;
    }
    
    .property-table th {
        background-color: var(--primary-color) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .footer {
        background-color: var(--primary-color) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
