.sc-fm-title {
    margin: 24px 0;
    font-weight: 500;
    font-size: 24px;
}

.sc-fm {
    display: flex;
    gap: 64px;
    margin-bottom: 24px;
}

.sc-fm_categories {
    width: 340px;
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.sc-fm_categories_category {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8px 16px;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.sc-fm_categories_category-icon {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    transition: background-color 0.2s ease-in-out;
}

.sc-fm_categories_category:hover {
    background-color: #e6e6e6;
}

.sc-fm_categories_category:hover .sc-fm_categories_category-icon {
    background-color: #ffffff;
}

.sc-fm_categories_category.sc-fm_categories_category__active {
    background-color: #CF2121;
    color: #ffffff;
}

.sc-fm_categories_category.sc-fm_categories_category__active .sc-fm_categories_category-icon {
    background-color: #ffffff;
}

.sc-fm_categories_category span {
    font-size: 16px;
}

.sc-fm_files {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-fm_files_file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
}

.sc-fm_files_file-name {
    font-size: 16px;
    font-weight: 500;
}

.sc-fm_files_file-button {
    background: #F5F5F5;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .sc-fm {
        flex-direction: column;
        gap: 32px;
    }

    .sc-fm_categories {
        width: 100%;
    }
}
