.file-upload {
    .image-upload {
        height: 170px;
        width: 170px;
        border-radius: 50%;
        box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
        margin: 0 auto;
        overflow-y: hidden;
    }
    .image-upload > input
    {
        display: none;
    }

    .image-upload label img
    {
        width: 100%;
        height: 100%;
        cursor: pointer;
        object-fit: cover;
    }
}
.booklet-file-upload {
    display: grid;
    height: 55vh;
    .image-upload {
        width: 100%;
        border-radius: 1rem;
        box-shadow: rgb(0 0 0 / 5%) 0px 3px 6px, rgb(0 0 0 / 0%) 0px 3px 6px;
        margin: 1rem auto;
        overflow-y: hidden;
    }

    .image-upload label {
        display: flex;
        justify-content: center;
    }

    .image-upload > input
    {
        display: none;
    }

    .image-upload label img
    {
        max-height: 50vh;
        max-width: 100%;
        cursor: pointer;
        object-fit: cover;
    }
}

.multi-upload {
    padding: 1rem;
    margin-top: 1rem;
    border: 1px dashed #18a7ff82;
    border-radius: 0.5rem;
    background: #18a7ff0d;

    .upload-label {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        svg {
            color: #18a7ff;
        }

        p {
            margin-top: 0.5rem;
            color: #18a7ff;
            font-size: 20px;
            font-family: cursive;
        }
    }
}

.uploaded {
    margin: 15px 0;
    font-size: 16px;
    color: #a5a5a5;
}

.file-wrapper {

    .show-file-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 10px 0;
        padding: 5px 10px;
        box-shadow: #0000000d 0px 0px 0px 1px, #d1d5db3d 0px 0px 0px 1px inset;

        .left {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;

            p {
                font-weight: 800;
                margin: 0;
            }
        }

        .file-type {
            background: #18a7ff;
            color: #fff;
            padding: 5px 15px;
            font-size: 15px;
            text-transform: capitalize;
            border-radius: 5px;
        }

        .right {
            span {
                background: red;
                color: white;
                width: 25px;
                height: 25px;
                font-size: 25px;
                line-height: 25px;
                display: inline-block;
                text-align: center;
                cursor: pointer;
                border-radius: 50%;
            }

            p {
                font-weight: 800;
                margin: 0;
            }
        }
    }
}

