.uploader-container {
    border-radius: 12px;
    width: 100%;
}

.drag-area {
    border: 1px solid #EAECF0;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    background: #fff;
}

    .drag-area .icon {
        width: 60px;
        height: 60px;
        background-color: #F2F4F7;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        border: 6px solid #F9FAFB;
    }


    .drag-area .header-text {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

        .drag-area .header-text span {
            font-weight: 400;
            color: #666;
        }

    .drag-area .support-text {
        font-size: 14px;
        color: #999;
        margin-top: 8px;
    }

.file-list-section {
    margin-top: 25px;
}

.file-list-header {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 10px;
}

    .file-item:last-child {
        margin-bottom: 0;
    }

.file-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c8dbc8;
    border: 4px solid #026002;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .file-icon svg {
        width: 18px;
        height: 18px;
        fill: #026002;
    }

.file-info .file-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: block;
}

.file-info .file-size {
    font-size: 13px;
    color: #777;
    display: block;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

    .delete-btn svg {
        width: 20px;
        height: 20px;
        fill: #888;
        transition: fill 0.2s;
    }

    .delete-btn:hover svg {
        fill: #d9534f;
    }

/* Gizli dosya inputu */
#fileInput {
    display: none;
}

/* --- YENİ: Progress Bar Stilleri --- */
.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.progress-container {
    flex-grow: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #026002; /* İstediğiniz kırmızı renk */
    border-radius: 4px;
    transition: width 0.1s linear; /* Pürüzsüz geçiş için */
}

.progress-percent {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    flex-shrink: 0;
}