#standard-page .showfile-standard-info div:nth-child(1) {
    background-color: var(--Gray-Gray-400);
}

.dark-page #standard-page .showfile-standard-info div:nth-child(1) {
    background-color: var(--Gray-Gray-500);
}

#standard-page .showfile-standard-info div:nth-child(1) p {
    color: var(--Gray-Not-White);
}

#standard-page .showfile-standard {
    background-color: var(--Primary-Blue-50);
    border: 1px solid var(--Primary-Blue-100);
    border-radius: 8px;
}

.dark-page #standard-page .showfile-standard {
    background-color: var(--Primary-Blue-100);
    border: 1px solid var(--Primary-Blue-200);
    border-radius: 8px;
}

#standard-page .showfile-standard-btns button {
    border: 2px solid var(--Primary-Blue-500);
    color: var(--Primary-Blue-500);
}

.dark-page #standard-page .showfile-standard-btns button {
    border: 2px solid var(--Primary-Blue-400);
    color: var(--Primary-Blue-400);
}

/* tabs */
#standard-tabs .tab {
    overflow: hidden;
    border-bottom: 1px solid var(--Gray-Gray-200);
}

#standard-tabs .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 7px;
    transition: 0.3s;
    font-weight: 500;
    color: var(--Gray-Gray-600);
}

.dark-page #standard-tabs .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 7px;
    transition: 0.3s;
    font-weight: 400;
    color: var(--Gray-Gray-400);
}

#standard-tabs .tab button:hover {
    color: var(--Gray-Gray-850);
}

.dark-page #standard-tabs .tab button:hover {
    color: var(--Gray-Gray-300);
}

#standard-tabs .tab button.active {
    color: var(--Gray-Not-Black);
    font-weight: 600;
}

.dark-page #standard-tabs .tab button.active {
    color: var(--Gray-Not-White);
    font-weight: 600;
}

#standard-tabs .tab button.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--Primary-Blue-500);
}

#standard-tabs .tabcontent {
    display: none;
}

#standard-tabs .card-main h6:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -9px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--Secondary-Yellow-400);
}

.dark-page #standard-tabs .card-main h6::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -9px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--Secondary-Yellow-100);
}


/* Style for selected dropdown items */
.selected {
    background-color: var(--Primary-Blue-100);
    color: var(--Gray-Not-White);

}

.dropdown-button-selected {
    background-color: #007bff !important; /* or any color you want */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.btn-partial-compliant {
     background-color: #E965073D !important;
    --bs-btn-color: #000;
    --bs-btn-bg: #E96507;
    --bs-btn-border-color: #E96507;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #E965077A;
    --bs-btn-hover-border-color: #E965077A;
    --bs-btn-focus-shadow-rgb: 213, 176, 43;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #E965073D;
    --bs-btn-active-border-color: #E965073D;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #E965077A;
    --bs-btn-disabled-border-color: #E965077A;
}

/* Badge styling for Comment button */
#standard-page .svg-badge-wrapper > .svg-badge {
    /* Badge */
    position: absolute;
    width: 20px;
    height: 20px;
    right: 4px;
    top: -4px;

    background: #1D70B7;
    border-radius: 64px;
    border: 2px solid #fff; /* Add white border to separate from button */

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    z-index: 1;

    /* Badge text */
    font-family: 'Vazirmatn', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #F7F7F7;
}

/* Comment button specific styling */
.btn-comment {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    gap: 8px;

    /* Size */
    width: 170px;
    height: 46px;

    background: #FFC000;
    border: 2px solid #FFC000;
    border-radius: 64px;

    font-family: 'Nunito Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000025;
}

.btn-comment svg {
    width: 20px;
    height: 20px;
    stroke: #000025;
}

/* .btn-full-report styling removed to inherit from general button styles */

.btn-full-report{
    /* btn/Primary/Dark */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 32px 12px 24px;
gap: 8px;


border-color: none;
background:  linear-gradient(90deg, #103F67 0%, #1D70B7 100%);
border-radius: 64px;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

border: 1px solid var(--Light-Gradient);
color: var(--Gray-Not-White);
width: fit-content;
}
.dark-page .btn-full-report{
    background: var(--Dark-Gradient);
    border: 1px solid var(--Light-Gradient);
    color: var(--Gray-Not-White);
    width: fit-content;
}
