﻿
.upload-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ccc;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.custom-upload {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 25px;
    border: 2px dashed #aaa;
    border-radius: 12px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    width: 200px;
    margin: auto;
}

    .custom-upload:hover {
        background: #eaeaea;
    }

    .custom-upload i {
        font-size: 36px;
        margin-bottom: 10px;
        color: #007bff;
    }

.preview-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
    justify-content: center;
}

    .preview-container img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 0 5px #aaa;
    }



.upload-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ccc;
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.custom-upload {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    padding: 20px;
    border: 2px dashed #aaa;
    border-radius: 12px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

    .custom-upload:hover {
        background: #e0e0e0;
    }

    .custom-upload i {
        font-size: 36px;
        margin-bottom: 8px;
        color: #007bff;
    }

#fileList {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    text-align: left;
}

    #fileList li {
        padding: 10px;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 10px;
        direction: ltr;
    }

.file-icon {
    font-size: 20px;
    color: #007bff;
}


