.advanced-features {
    margin-top: 2rem;
}

.report-section .feature-group {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.report-section .feature-group h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.report-section .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.report-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.report-section .feature-item:hover {
    transform: translateX(4px);
    background: #f1f5f9;
}

.report-section .feature-item i {
    color: #10b981;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.report-section .feature-item span {
    color: #1e293b;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* OEM Packages Table Styles */
.oem-packages-section {
    margin-top: 3rem;
}

.package-category {
    margin-bottom: 3rem;
}

.package-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.package-table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.package-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

.package-table th {
    background: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.package-table th:first-child {
    border-top-left-radius: 0.75rem;
}

.package-table th:last-child {
    border-top-right-radius: 0.75rem;
}

.package-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.code-column {
    width: 120px;
}

.price-column {
    width: 100px;
}

.type-column {
    width: 100px;
}

.code-cell .code-value {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #bfdbfe;
    display: inline-block;
}

.package-name {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.package-features i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.price-cell {
    font-weight: 600;
    color: #059669;
    text-align: left;
}

.type-cell {
    text-align: left;
}

.package-type {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

tr.standard .package-type {
    background: #e2e8f0;
    color: #475569;
}

tr.custom .package-type {
    background: #dbeafe;
    color: #2563eb;
}

tr.standard {
    background: #f8fafc;
}

tr.custom {
    background: white;
}

tr:hover {
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .package-table {
    }
	.package-table th {
		padding:0.25rem;
		text-align: center;
	}
	.package-table thead tr th:nth-child(2) {
		width:30%;
	}
	.price-cell{
		text-align: left;
	}
}
