
/* Wrapper */
.new-assessment-body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
    padding: 40px;
}

.new-assessment-container {
    max-width: 960px;
    margin: auto;
    padding: 0;
    border-radius: 10px;
    display: flex;
    gap: 40px;
    width: 908px;
}

.new-assessment-left,
.new-assessment-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-assessment-group {
    display: flex;
    flex-direction: column;
}

.new-assessment-group label,
.new-assessment-upload-wrapper label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.new-assessment-group input {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid #F1F2F2;
    background: #F9F9F9;
    outline: none;
    width: 100%;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.new-assessment-upload-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.browseLink {
    font-weight: 700 !important;
}

.new-assessment-upload {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed #DFE0E0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #333;
    cursor: pointer;
    background: #F9F9F9;

}

.new-assessment-upload.dragover {
    border-color: #666;
    background-color: #f0f0f0;
}

.new-assessment-upload input {
    display: none;
}

.new-assessment-upload p {
    margin-top: 12px;
    font-family: Manrope;
    font-size: 13px;
    max-width: 240px;
}

.new-assessment-upload a {
    color: #333;
    text-decoration: underline;
    cursor: pointer;
}

.new-assessment-file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 16px;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    border: 0;
}

.file-icon {
    font-size: 18px;
}

.file-name {
    flex-grow: 1;
    color: #333;
    overflow-wrap: anywhere;
}

.remove-link {
    color: #e74c3c;
    cursor: pointer;
    font-weight: 500;
}

.new-assessment-button {
    margin-top: 0;
}

.new-assessment-button button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4px 32px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 30px;
    background: #1E1E1E;
    height: 45px;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.required {
    color: red;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .new-assessment-container {
        flex-direction: column;
    }

    .new-assessment-left,
    .new-assessment-right {
        width: 100%;
    }
}


.tabs {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.tabs button {
    background: none;
    border: none;
    color: #555;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.tabs .active {
    background: #ddd;
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

.search-bar {
    margin-left: auto;
    margin-right: 1rem;
    max-width: 332px;
    border-radius: 30px;
    height: 35px;
    border: 0;
    font-family: Manrope;
    font-size: 13px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.search-bar:focus {
    box-shadow: none;
    outline: none;
    border: 0;
}

.client-list {
    padding: 0 1rem;
}

.client-item {
    background: transparent;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    position: relative;
}

.client-item:hover {
    background: #1a1a1a;
    color: #E2E774;
    border-radius: 10px;

}

.client-item .dropdown-toggle::after {
    display: none;
}

.client-item.active {
    background: #1a1a1a;
    color: #e5e23b;
}

.client-item .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 200px;
}

.client-item .dropdown {
    position: relative;
}

.client-item .dropdown>button::after {
    content: ' ▼';
    font-size: 0.75rem;
    margin-left: 4px;
    vertical-align: middle;
}

#loadMore {
    margin: 2rem auto;
    display: block;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

button#loadMore svg {
    margin-right: 3px;
    transition: 0.3s;
}

#loadMore:hover svg path {
    stroke:#fff;
}

.client-item span {
    font-family: Roca;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
}

.star-rating {
    font-size: 32px !important;
}

.star-rating-md {
    font-size: 20px !important;
}

.star-rating-sm {
    font-size: 10px !important;
}