.audit-case-root{
    --primary: #161a19;
    --secondary: #5D8AA8;
    --accent: #7b1817;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text: #333;
    --border: #ddd;
} .audit-case-root *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} .audit-case-root{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
} .audit-case-root .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} .audit-case-root .t250{font-size:2.5em} .audit-case-root header{
    background-color: var(--primary);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 5px solid var(--accent);
    position: relative;
} .audit-case-root h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
} .audit-case-root h2{
    color: var(--primary);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    scroll-margin-top: 100px;
} .audit-case-root h3{
    color: var(--secondary);
    margin: 20px 0 10px;
} .audit-case-root p{
    margin-bottom: 15px;
} .audit-case-root .highlight{
    background-color: var(--light);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary);
} .audit-case-root ul, .audit-case-root ol{
    margin: 15px 0 15px 25px;
    padding-left: 20px;
} .audit-case-root li{
    margin-bottom: 8px;
    padding-left: 5px;
} .audit-case-root ul ul, .audit-case-root ol ol, .audit-case-root ul ol, .audit-case-root ol ul{
    margin-top: 5px;
    margin-bottom: 5px;
} .audit-case-root .highlight ul, .audit-case-root .highlight ol{
    margin-left: 15px;
} .audit-case-root /* Image styles */
.audit-image{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid var(--border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} .audit-case-root .image-caption{
    text-align: center;
    font-style: italic;
    margin-top: -15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9em;
} .audit-case-root /* Table styles */
table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: white;
    font-size: 0.9em;
} .audit-case-root th, .audit-case-root td{
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    word-break: break-word;
} .audit-case-root th{
    background-color: var(--primary);
    color: white;
    font-weight: bold;
} .audit-case-root tr:nth-child(even){
    background-color: #f8f8f8;
} .audit-case-root tr:hover{
    background-color: #f1f1f1;
} .audit-case-root .responsive-table{
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
} .audit-case-root /* Badge styles */
.badge{
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
    position: relative;
} .audit-case-root .badge.green{
    background-color: #2ecc71;
    color: white;
} .audit-case-root .badge.red{
    background-color: #e74c3c;
    color: white;
} .audit-case-root .badge.blue{
    background-color: #3498db;
    color: white;
} .audit-case-root .badge.gray{
    background-color: #95a5a6;
    color: white;
} .audit-case-root .badge.yellow{
    background-color: #f39c12;
    color: white;
} .audit-case-root .badge-tooltip{
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
    margin-bottom: 5px;
} .audit-case-root .badge:hover .badge-tooltip{
    visibility: visible;
    opacity: 1;
} .audit-case-root /* Navigation styles */
.nav-links{
    display: none;
    background-color: #333;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
} .audit-case-root .nav-links.active{
    display: block;
} .audit-case-root .nav-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
} .audit-case-root .nav-link{
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
} .audit-case-root .nav-link:hover{
    background-color: var(--secondary);
} .audit-case-root .anchor-link{
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary);
    transition: all 0.3s ease;
} .audit-case-root .anchor-link:hover{
    border-bottom: 1px solid var(--secondary);
    color: var(--primary);
} .audit-case-root /* Footer styles */
footer{
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
} .audit-case-root .contacts{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
} .audit-case-root .contact-link{
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
} .audit-case-root .contact-link:hover{
    text-decoration: underline;
} .audit-case-root /* Button styles */
.report-btn{
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
} .audit-case-root .report-btn:hover{
    background-color: var(--primary);
} .audit-case-root /* Back to top button */
.back-to-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 99;
} .audit-case-root .back-to-top:hover{
    background-color: var(--primary);
    transform: translateY(-3px);
} .audit-case-root .back-to-top.active{
    opacity: 1;
    visibility: visible;
} .audit-case-root .back-to-top svg{
    width: 24px;
    height: 24px;
    fill: currentColor;
} .audit-case-root /* Media queries */
@media (max-width: 768px){
    h1 {
        font-size: 2rem;
    } .audit-case-root th, .audit-case-root td{
        padding: 8px 10px;
        font-size: 0.85em;
    } .audit-case-root .nav-links{
        display: none;
        padding: 5px 0;
    } .audit-case-root .nav-container{
        gap: 4px;
        padding: 0 5px;
    } .audit-case-root .nav-link{
        padding: 3px 5px;
        font-size: 12px;
        white-space: nowrap;
    } .audit-case-root .nav-link:active{
        background-color: var(--secondary);
    } .audit-case-root .badge-tooltip{
        white-space: normal;
        width: 150px;
        left: 0;
        transform: none;
    } .audit-case-root .badge{
        position: relative;
        display: inline-flex;
        font-size: 10px;
    } .audit-case-root .badge:active .badge-tooltip, .audit-case-root .badge:focus .badge-tooltip{
        visibility: visible;
        opacity: 1;
    } .audit-case-root .back-to-top{
        display: none;
    } .audit-case-root }

@media (min-width: 769px){
    .nav-links {
        display: block;
    } .audit-case-root }

/* Прелоадер */
.preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
} .audit-case-root .preloader.hidden{
    opacity: 0;
    pointer-events: none;
} .audit-case-root .loader{
    width: 80px;
    height: 80px;
    position: relative;
} .audit-case-root .loader-inner{
    position: absolute;
    border: 4px solid transparent;
    border-top-color: #5D8AA8;
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
} .audit-case-root .loader-inner:nth-child(1){
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-delay: 0.1s;
} .audit-case-root .loader-inner:nth-child(2){
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: 0.2s;
    border-top-color: #d4af37;
} .audit-case-root .loader-inner:nth-child(3){
    width: 20px;
    height: 20px;
    top: 30px;
    left: 30px;
    animation-delay: 0.3s;
    border-top-color: #e74c3c;
} .audit-case-root @keyframes rotate{
    0% {
        transform: rotate(0deg);
    } 100%{
        transform: rotate(360deg);
    }
}
