/* Stilizare generală pentru containerele și tabelele din pagină */
.simple-text-page table {
	width: 100% !important;
	max-width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: #333333;
	border: 1px solid #dcdcdc;
	margin-bottom: 20px;
	background-color: #ffffff;
}

/* Stilizare pentru Antetul tabelelor (thead) */
.simple-text-page table thead tr {
    background-color: #544487; /* S-a folosit nuanța de mov din titlurile tale curent definite (#544487) */
    color: #ffffff;
}

.simple-text-page table thead td, 
.simple-text-page table thead th {
    padding: 10px 12px;
    font-weight: bold;
    border: 1px solid #544487;
    text-align: left;
}

/* Stilizare pentru Corpul tabelelor (tbody) */
.simple-text-page table tbody td {
    padding: 10px 12px;
    border: 1px solid #e2daeb; /* Linie fină cu tentă mov/gri */
    vertical-align: top; /* Îmbunătățește citirea pentru texte lungi */
    line-height: 1.4;
}

/* Fundal alternativ discret pentru rândurile din tbody (efect zebra ca în imagine) */
.simple-text-page table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.simple-text-page table tbody tr:nth-child(even) {
    background-color: #fbf9fc; /* Nuanță extrem de pală de mov/roz deschis */
}

/* Tratament special pentru tabelele-casetă (cele care nu au thead, cum sunt avertismentele din text) */
.simple-text-page table:not(:has(thead)) tbody tr {
    background-color: #fbf9fc !important;
}
.simple-text-page table:not(:has(thead)) td {
    border: 1px solid #544487;
    padding: 15px;
}

/* Opțional: Accent pe prima coloană pentru tabelele de tip specificații */
.simple-text-page table tbody tr td:first-child strong {
    color: #544487;
}

@media (max-width: 1023px) {
    .page-simple-content .content-center {      padding-left: 20px;      padding-right: 20px;      max-width: 94%;    }
    .simple-text-page table tbody td, .simple-text-page table thead td, .simple-text-page table thead th {        padding: 5px 5px;          }
    .simple-text-page table {        font-size: 12px;    }
}
@media (max-width: 479px) {
    .simple-text-page table {        font-size: 9px;    }
    .page-simple-content .content-center {        padding-left: 10px;        padding-right: 10px;        max-width: 100%;        background-color: #f6f7fa;    }
    h2 {        font-size: 18px;    }
    h3 {        font-size: 16px;    }
    .simple-text-page {        font-size: 13px;    }
}