/* styling for face scan results table */

.limmme-results-table td.green {
    color: #bedb39;
    font-weight: bold;
}

.limmme-results-table td.orange {
    color: #fd7400;
    font-weight: bold;
}

.limmme-results-table td.red {
    color: #a62121;
    font-weight: bold;
}

.limmme-results-table {
    width: 100%;
    border-collapse: collapse;
}

.limmme-results-table th,
.limmme-results-table td {
    border: 1px solid #004358;
    padding: 8px;
    text-align: left;
}

.limmme-results-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.limmme-results-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.limmme-results-table .info-toggle {
		width:100%;
    color: #004358;
		background-color:#FFFFFF;
    border: solid, 2px, #bedb39;
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.limmme-results-table .info-toggle:hover {
    background-color: 
#bedb39; 
}


.limmme-results-table tr[id^="info-"] {
    background-color: white; /* Light gray for expanded rows */
}

/* Set specific widths for each column */
.limmme-results-table th:nth-child(1), 
.limmme-results-table td:nth-child(1) {
    width: 55%; /* Adjust for your needs */
}

.limmme-results-table th:nth-child(2), 
.limmme-results-table td:nth-child(2) {
    width: 30%;
	  text-align:center;
}

.limmme-results-table th:nth-child(3), 
.limmme-results-table td:nth-child(3) {
    width: 15%;
}