.custom-file-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #afbdcf;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    color: #999;
    margin: 0.5rem 0;
    white-space: normal;
}

    .custom-file-container > div {
        word-break: break-all;
        flex: 1;
        margin-inline-end: 1rem;
    }

    .custom-file-container.active {
        color: #4BB543;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .custom-file-container svg {
        display: inline;
        fill: #000;
    }

[data-theme="dark"] .custom-file-container svg {
    fill: #fff;
}

.custom-file-button {
    border-radius: 6px;
    margin: 2px;
    width: 25px;
    height: 25px;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

    .custom-file-button.custom-file-remove-button {
        color: #fff;
        background-color: #dc3545;
        padding: 4px 7px;
    }

    .custom-file-button.custom-file-link-button {
        color: #fff;
        background-color: #4BB543;
        padding: 3px 3px;
    }

.custom-file-container input[type="file"] {
    display: none;
}
