﻿
/* Resetări și stiluri de bază */
body-tabel-origine {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5; /* Un fundal neutru pentru pagină */
    color: #1a202c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Container principal pentru componentă */
.comparison-container-origine {
    width: 100%;
    max-width: 640px;
    margin: 20px auto;
    background-color: #0a0a0a;
    color: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    padding-bottom:0;
    margin-bottom:0;
}

/* Antet */
header-origine {
    margin-bottom: 32px;
    text-align: center;
}

    header-origine h1 {
        font-size: 1.5rem; /* 24px */
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 4px 0;
    }

    header-origine h2 {
        font-size: 1.125rem; /* 18px */
        font-weight: 500;
        color: #6b7280; /* gri */
        margin: 0;
    }

/* Tabel */
.comparison-table-origine {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem; /* 14px */
    text-align: left;
}

    .comparison-table-origine thead {
        font-size: 0.75rem; /* 12px */
        color: #fff; /* gri */
        text-transform: uppercase;
        background-color: #0a0a0a;
    }

    .comparison-table-origine th,
    .comparison-table-origine td {
        padding: 16px 8px;
        vertical-align: middle;
    }

        .comparison-table-origine th.feature-header {
            width: 50%;
        }

        .comparison-table-origine th.product-header {
            width: 25%;
            text-align: center;
        }

    .comparison-table-origine tbody tr {
        border-bottom: 1px solid #374151; /* gri */
    }

        .comparison-table-origine tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table-origine tbody tr:hover {
            background-color: rgba(55, 65, 81, 0.4);
        }

.feature-cell-origine {
    font-weight: 600;
    color: #ffffff;
    word-break: break-word;
}

.apacks-cell-origine {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.competitor-cell-origine {
    text-align: center;
}

/* Pictograme */
.icon-origine {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.icon-check-origine {
    color: #f9fafb; /* alb */
}

.icon-risk-origine {
    color: #ef4444; /* roșu */
}
