/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 26 2026 | 12:10:47 */
.ws-table-all {
   width: 100%;
    border-collapse: separate; /* Jābūt 'separate', lai border-radius strādātu */
    border-spacing: 0;        /* Likvidē atstarpi starp šūnām */
    border: 1px solid #e0e0e0;
    border-radius: 8px;       /* Šeit notiek noapaļošana */
    overflow: hidden;         /* Šis ir kritiski svarīgi, lai stūri būtu "nogriezti" */
    margin: 20px 0;
}

.ws-table-all th, 
.ws-table-all td {
    padding: 8px; /* Vari mainīt uz 8px, ja vēlies kompaktāku */
    border: 1px solid #e0e0e0; /* Border katrai šūnai */
    text-align: left;
	font-size:13px
}

/* Katra otrā rinda viegli pelēka */
.ws-table-all tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Header stils (opcionāli) */
.ws-table-all th {
    background-color: #f1f1f1;
    font-weight: bold;
}
.exam-question-card img {
	border-radius:10px
}