.upload-paste-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.url-input-span {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
    width: 100%;
    width: 248px;
}

.url-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
}

.right-icon {
    cursor: pointer;
}

.upload-file, .sample-file,
.paste-url , .qr-camera {
    border: 1px solid #D3D3D3;
    background: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    color: #24292E;
    line-height: 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 0.3rem;
}

.drag-drop-area {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: -10px;
    padding: 2px;
   
    width: 100%;
    max-width: 300px;
}

.drag-drop-area .drag-over {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: #2980b9;
}
.drop-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #555;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
}

.drag-over{
    position: relative !important;
}

@media (max-width: 430px) {
    .drag-drop-area{
        margin-top: -6px !important;
        padding: 0px !important;
    }
    .upload-paste-btns {
        top:60% !important;
    }
}

@media (max-width: 580px) {
    .drag-drop-area{
        margin-top: -6px !important;
        padding: 0px !important;
    }
    .upload-paste-btns {
        top:60% !important;
    }
}