.ISRCUpload-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;

    p.upload-instructions {
        margin-bottom: 8px;
    }

    .ISRCUpload {
        border-radius: 20px;
        width: 100%;
        padding: 25px 30px;
        display: flex;
        flex-direction: column;

        & .upload-prompt {
            display: flex;
            align-items: center;
            gap: 20px;

            .Icon {
                border-radius: 100%;
                background: white;
                width: 40px;
                height: 40px;
                padding: 10px;
            }

            .text {
                display: block;
                flex-grow: 1;
            }

            h4 {
                margin-bottom: 0;
            }
        }

        .uploading {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }

        .upload-summary {
            display: flex;
            flex-direction: row;
            align-items: center;

            p {
                font-weight: bold;
                flex-grow: 1;
                margin: 0;
            }
        }
    }
}
