 

nav ul {
    list-style: none;
    margin: 0 0 20px 10px;
 
    display: flex;
    align-items: center;
    gap: 0;
 
    flex-wrap: wrap;
}

 nav ul li:last-child{
	 font-weight:700
 } 
 nav ul li a{
	 color:#3D3D3D;
 
 }

nav ul li:not(:last-child)::after {
    content: " > ";   
    color: #6c757d;    
    margin: 0 12px;   
    font-weight: 300;
}

.frf{
 
	margin:30px 0;
}

.frf>div:first-child{
 
}
.tab {
    width: 100%;
 
 
    border-collapse: collapse;
    border-collapse: collapse;
    border-collapse: collapse;
 
    overflow: hidden;
 
    background: #fff;
 margin-bottom:10px;
}

 
#h1 {
	margin: 0 0 10px 0 ;
    background: linear-gradient(135deg, #D92727 0%, #B71C1C 100%);
    color:#ffffff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
 
    letter-spacing: 0.5px;
}

/* Основные строки */
.tab tr:nth-child(n+2) {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.tab tr:nth-child(n+2):hover {
    background: #f8f9ff;
}

/* Левый столбец (лейблы) */
.tab td:first-child {
    background: #f8f9fa;
    font-weight: 600;
 
    padding: 16px 20px;
    width: 40%;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Правый столбец (значения) */
.tab td:last-child {
    padding: 16px 20px;
 
    font-weight: 500;
    font-size: 1em;
}

/* Последняя строка без границы */
.tab tr:last-child {
    border-bottom: none;
}

/* Адаптив */
@media (max-width: 768px) {
	
	
	
	
    .tab {
        margin: 15px 10px;
        font-size: 0.9em;
    }
    
    .tab tr:first-child td {
        padding: 16px 12px;
    font-size: 1.1em;
    }
    
    .tab td {
        padding: 12px 15px;
    }
    
    .tab td:first-child {
        width: 35%;
    }
	
	
	.frf{
		padding: 10px;
		align-items:center;
 
	flex-direction:column;
}

	
	
}

/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
    .tab {
        background: #CAD7E0;
 
    }
 
    .tab td:first-child {
        background: #E4EBF1;
 
    }
    
    .tab td:last-child {
 
    }
}